Hi there, I've come across an issue with a site I have been working on. This site has 2 modes; live and development. In live firebug works fine, but in development mode it does not.
When in the Script panel, clicking the dropdown to display the list of scripts on the page doesnt populate the list - it is empty. >From what I can gather, the issue lies with this: <iframe style="border-width: 0pt; position: absolute; visibility: visible; width: 10em; height: 10em; top: -104px; left: -104px;" id="_yuiResizeMonitor" src="data:text/html;charset=utf-8,%3Chtml%3E %3Chead%3E%3Cscript%20type%3D%22text%2Fjavascript%22%3Ewindow.onresize %3Dfunction %28%29%7Bwindow.parent.YAHOO.widget.Module.textResizeEvent.fire %28%29%3B%7D%3C%2Fscript%3E%3C%2Fhead%3E%3Cbody%3E%3C%2Fbody%3E%3C %2Fhtml%3E"></iframe> I had a look around the extension, and after a bit of playing this seems to do the trick: [lib.js 2381] props['name'] = decodeURIComponent(props['encodedContent'].substr (0,200)).replace(/\s*$/, ""); replace with props['name'] = decodeURIComponent(props['encodedContent']).replace(/ \s*$/, ""); Im sure this isnt the way to fix this, but it seems that limiting it to 200 chars stops the last </html> (in the src of the iframe) from being processed. Hope this is of some use! Ben --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/firebug?hl=en -~----------~----~----~----~------~----~------~--~---
