views:

152

answers:

2

HI all,

Firebug is not displaying Complete js file to debug. I m unable to place break points at particular line in js file, half of the file content is display, half of file content is not displaying. please help me what to do to place break points at particular line which can visible line.that js file is gwt compiler generated file.

I am using Firebug 1.5.0 version. Firefox 3.5.

A: 

There was a bug on this fixed recently in Firebug, so try upgrading to the latest version.

Edit: you might need to install the alpha builds: see http://blog.getfirebug.com/2010/03/17/firebug-1-6a8/

Matthew Wilson
Hi , I installed new one,but still same problem.can suggest me a bit what can be the problem ?
kumar kasimala
Sorry, that's all I know, I saw that blog post recently and assumed it was the same as your problem. Maybe just try splitting your js into smaller chunks then.
Matthew Wilson
A: 

If you have access to change the raw file, you can add the debugger; statement at that line, which triggers a breakpoint when it is executed. Then you won't need to scroll through.

Alternatively, I believe that the Chrome developer tools will allow you to set a breakpoint with a command, rather than clicking, so you won't need to scroll the file either. Not sure if Chrome is an option.

bcherry