Closed
Bug 771063
Opened 12 years ago
Closed 12 years ago
[IE9] Unable to get value of the property 'visible': object is null or undefined @ impala-min.js?build=78073c4, line 8 character 28477
Categories
(addons.mozilla.org Graveyard :: Statistics, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
2012-07-05
People
(Reporter: bugzilla-mozilla-20000923, Assigned: cvan)
Details
When loading an AMO statistics page, such as https://addons.mozilla.org/en-US/firefox/addon/adblock-plus/statistics/, the following error is logged and the statistics fail to load:
SCRIPT5007: Unable to get value of the property 'visible': object is null or undefined
impala-min.js?build=78073c4, line 8 character 28477
This is caused by an assumption that 'window.locationbar' exists - it does not in IE or Opera. The following part of impala-min.js:
chromeless:!window.locationbar.visible,
Can be changed to:
chromeless:window.locationbar&&!window.locationbar.visible,
And the page loads fine with all statistics.
Assignee | ||
Comment 1•12 years ago
|
||
https://github.com/mozilla/zamboni/commit/249de31
This will go live with our push today at 2:00 PM PDT. Thanks for filing!
Assignee: nobody → cvan
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → 2012-07-05
Reporter | ||
Comment 3•12 years ago
|
||
Not sure why this got verified ahead of time as it's well past 2PM PDT but there's no sign of this on live. When should I expect it to be live instead?
Comment 4•12 years ago
|
||
Sorry, tested it on the wrong platform, my apologies, Verified that the bug still exists:
http://screencast.com/t/qMAcT0BLcwT
Status: VERIFIED → REOPENED
Resolution: FIXED → ---
Reporter | ||
Comment 5•12 years ago
|
||
Things appear to have made it to live (at least the URL in comment 0).
Status: REOPENED → RESOLVED
Closed: 12 years ago → 12 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 6•12 years ago
|
||
(In reply to James Ross from comment #5)
> Things appear to have made it to live (at least the URL in comment 0).
Yeah, the original error you spotted has been fixed. But now we have a new one:
Unable to set value of the property 'messages': object is null or undefined
I filed a new bug (bug 771558) to more easily track this. Sorry for all the confusion above, and thanks for filing.
Updated•9 years ago
|
Product: addons.mozilla.org → addons.mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•