Closed
Bug 677604
Opened 15 years ago
Closed 15 years ago
Allow editors to turn off lock-checking
Categories
(addons.mozilla.org Graveyard :: Admin/Editor Tools, defect)
addons.mozilla.org Graveyard
Admin/Editor Tools
Tracking
(Not tracked)
RESOLVED
FIXED
6.2.0
People
(Reporter: gkoberger, Assigned: gkoberger)
Details
Currently, we check every 8 seconds to see if another editor is viewing the page. This is annoying jbalogh, so I'll make a (hidden) option to turn it off.
| Assignee | ||
Comment 1•15 years ago
|
||
This shouldn't be a feature anyone can access (since it's important other editors know you're on the page; the pinging both reserves the page and checks the data), so I made it a "hidden feature". Plus, I didn't want to spend time on a GUI if only jbalogh needs it.
To activate it:
window.localStorage['dont_poll'] = true;
To deactivate it:
window.localStorage.removeItem('dont_poll');
https://github.com/jbalogh/zamboni/commit/bda0d6
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Comment 2•15 years ago
|
||
Thanks!
(In reply to Gregory Koberger (:gkoberger) from comment #1)
> To deactivate it:
> window.localStorage.removeItem('dont_poll');
Also: delete localStorage.dont_poll
Updated•10 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
•