Undebug
From FirebugWiki
Revision as of 09:27, 18 July 2012 by Sebastianz (Talk | contribs)
Removes the breakpoint on the first line of a JavaScript function.
This breakpoint can also be removed via the Breakpoints Side Panel.
Contents |
[edit] Syntax
undebug(fn)
[edit] Parameters
[edit] fn
Function to remove the breakpoint from. (required)
[edit] Examples
Having the following function with a breakpoint at line 3:
function test()
{console.log("test1");
console.log("test2");
console.log("test3");
}
undebug(test)
This removes the breakpoint set at line 3 (console.log("test1");).