You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The status bar script no longer works in Firefox 135.0b5. I did some research and discovered that the issue was a change to the HTML of the chrome document. The ID of the element that bottomBox is inserted after has changed.
I wanted to add, this is the format to use for older Firefox versions, which should continue working once you update to 135:
letbefore=document.getElementById('fullscreen-and-pointerlock-wrapper');// works until Firefox 135.0b5if(!before)before=document.getElementById('pointerlock-warning');// required for Firefox 135.0b5 onwardbefore.insertAdjacentElement('afterend',bottomBox);
If you use that you should be able to update and not worry about it, at least until other scripts break in 136.
The status bar script no longer works in Firefox 135.0b5. I did some research and discovered that the issue was a change to the HTML of the chrome document. The ID of the element that
bottomBox
is inserted after has changed.This is the fix required:
I hope that helps others having the same issue.
The text was updated successfully, but these errors were encountered: