-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Firebug bookmarklet no longer functions when pointed to firebug.com #6
Comments
Ah! Good to know! I ran into this issue myself the other day recently. I thought FireBug was completely dead. Didn't look any further. But if it can still be obtained and used from GitHub then that's great news for debugging the older WebDialogs. |
Oh,.. I also had to track down the line (in one of the files) that still pointed to the online URL for the skin, and change it to the local path to the same skin.
var bookmarkletSkinURL = "file:///../skin/xp/";
//var bookmarkletSkinURL = "https://getfirebug.com/releases/lite/latest/skin/xp/"; // stable |
Note that I'm still getting alot of Firebug load errors where it will not load 1 out every 5 times. Often there are jQuery JS errors associated with the mis-loading. Firebug also refuses to remember it's window size and locations even though it is supposed to. |
Also, every time loaded, I get the MSIE popup that "Internet Explorer has blocked execution of scripts and ActiveX controls on this page ..." (annoying, but it will usually disappear on it's own after a minute or so.) |
I had been using the latest JQuery 3.3.1, but I down versioned to 3.3.0 and the JS errors have diminished drastically. |
Debugging page ...
A Firebug bookmarklet no longer functions when pointed to firebug.com.
They have shut down all access to firebug from the website, as the project was closed down in favor of merging it into Firefox.
Therefore, a developer must go to GitHub and get Firebug Lite from it's repo and install it locally, and point the bookmarklet to their local Firebug folder.
https://github.com/firebug/firebug-lite
P.S. - I've experienced that the
"-lite-dev"
edition seems to work forUI::WebDialog
on MS Windows when the other editions (-lite
,-lite-beta
,-lite-debug
) don't.BUT, it only works for me when it is loaded from the
<HEAD>
element of the webpage ...I tried to get the bookmarklet to work, ... but it would not, so I stuck with the
<SCRIPT>
element in the<HEAD>
of the HTML page.The text was updated successfully, but these errors were encountered: