Snippets

Create an account or login to be able to add, comment and rate snippets.

Navigation

Snippets tagged "debug javascript" Snippets tagged "debug javascript"

Hide Web Debug Details on Launch.

If you want to hide the Web Debug Details/Menus but also want to have quick access when you need it.

Then this could help you. Just copy this in a js file or print it in your layout:

/*
 * HIDE WEB DEBUG DETAILS ON LAUNCH
 */
Event.observe(window, 'load', function(){
    // check if web debug is on
    if ($('sfWebDebugBar'))
        sfWebDebugToggleMenu();
});
by Halil Köklü on 2007-06-25, tagged debug  javascript