Skip to content

Commit

Permalink
Add note about vendors and highlight.js
Browse files Browse the repository at this point in the history
  • Loading branch information
barryvdh committed Mar 25, 2014
1 parent 574c1c2 commit 30ee437
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ Note: The public assets can change overtime (because of upstream changes), it is
],

The profiler is enabled by default, if you have app.debug=true. You can override that in the config files.
You can also set in your config if you want to include the vendor files also (FontAwesome and jQuery). If you already use them in your site, set it to false.
You can also only display the js of css vendors, by setting it to 'js' or 'css'.
You can also set in your config if you want to include/exclude the vendor files also (FontAwesome, Highlight.js and jQuery). If you already use them in your site, set it to false.
You can also only display the js of css vendors, by setting it to 'js' or 'css'. (Highlight.js requires both css + js, so set to `true` for syntax highlighting)

$ php artisan config:publish barryvdh/laravel-debugbar

Expand Down
5 changes: 4 additions & 1 deletion src/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@
|
| Vendor files are included by default, but can be set to false.
| This can also be set to 'js' or 'css', to only include javascript or css vendor files.
| Vendor files are for css: font-awesome (including fonts) and for js: jquery 1.8.3
| Vendor files are for css: font-awesome (including fonts) and highlight.js (css files)
| and for js: jquery and and highlight.js
| So if you want syntax highlighting, set it to true.
| jQuery is set to not conflict with existing jQuery scripts.
|
*/

Expand Down

0 comments on commit 30ee437

Please sign in to comment.