1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-07-07 01:54:36 +02:00

first commit

This commit is contained in:
maximebf
2013-06-13 18:47:17 +08:00
commit 2972ea49c8
12 changed files with 2143 additions and 0 deletions

13
js/viewer.js Normal file
View File

@ -0,0 +1,13 @@
// Generated by CoffeeScript 1.4.0
(function() {
$(function() {
$('#content pre code').each(function(i, el) {
return hljs.highlightBlock(el);
});
if (window.location.search.indexOf('print') !== -1) {
return window.print();
}
});
}).call(this);