1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-17 21:38:14 +01:00

10 Commits

Author SHA1 Message Date
James Johnston
cbdeba00d0 Add option to not immediately show AJAX requests (#315)
By default, the debug bar will immediately show new AJAX requests. If
your page makes a lot of requests in the background (e.g. tracking),
this constant switching of the active data set can be disruptive to the
debug bar user.

This commit adds an option for disabling this behavior by calling
setAjaxHandlerAutoShow(false) on the JavascriptRenderer, like this:

    $renderer = $debugbar->getJavascriptRenderer();
    $renderer->setAjaxHandlerAutoShow(false);

When this behavior is disabled, AJAX requests are still available in the
drop-down list, but won’t become active until the user explicitly
selects them.
2017-03-05 08:17:18 +01:00
maximebf
4a660ced6f moved the call to jquery.noConflict() to the head rather than when calling render() (fixed #127) 2014-07-26 15:36:58 +02:00
maximebf
3089d2f750 refactoring and improvements to resizing and responsivity
debugbar header is now split in left and right containers for better responsivity
changed the way the indicators position is handled (not a property of the indicator anymore)
moved resize-handle out of body
when closed, the debugbar will always restore to opened state
2014-02-14 12:42:43 -03:00
Graham Campbell
0071105c25 CS fixes 2014-01-16 21:41:41 +00:00
GuimDev
20051093ad Small change for responsive CSS
Update full_init.html, javascript : rename function and variable.
2013-12-27 09:33:05 +01:00
maximebf
85fc816102 fixed failing test 2013-10-07 10:49:52 -04:00
maximebf
1b7e7fdbc8 jQuery.noConflict() is now called by default (fixed #29)
Will not be called if the js vendors are not included.
Can be enabled/disabled using JavascriptRenderer::setEnableJqueryNoConflict()
2013-09-19 16:31:50 -04:00
maximebf
90248ebb3c fixed unit tests with ajax handler 2013-09-15 11:40:37 -04:00
maximebf
c5a145ad14 added tests 2013-08-14 22:12:33 +10:00
maximebf
fb1605e93c added unit tests 2013-08-14 21:37:24 +10:00