Merge pull request #1151 from Henni/patch-1

Replace 'js' by 'css' in CSS Documentation
This commit is contained in:
Morris Jobke
2015-05-20 21:05:58 +02:00

View File

@@ -10,10 +10,10 @@ The CSS files reside in the **css/** folder and should be included in the templa
<?php
// include one file
style('myapp', 'style'); // adds js/style.css
style('myapp', 'style'); // adds css/style.css
// include multiple files for the same app
style('myapp', array('style', 'navigation')); // adds js/style.css, js/navigation.css
style('myapp', array('style', 'navigation')); // adds css/style.css, css/navigation.css
// include vendor file (also allows vendor syntax)
vendor_style('myapp', 'style'); // adds vendor/style.css