-
Notifications
You must be signed in to change notification settings - Fork 20
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
Doesn't work in Firefox 51.0a1+ (SyntaxError: non-generator method definitions may not contain yield) #228
Comments
Yet another trick: var o = {
get windows() {
return (function*() {
var ws = Services.wm.getEnumerator("navigator:browser");
while(ws.hasMoreElements())
yield ws.getNext();
})();
}
};
for(var w of o.windows)
alert(w.document.title); |
(SyntaxError: non-generator method definitions may not contain yield) (#228)
* unsafe CPOW usage (#208) * updated pt-PT locale (#210) * e10s: fixed private protocol (#211) * e10s: tweaks and fixes (#162) * e10s: single frame script (#213) * fixed recursion in wrapper for tab.setAttribute("image", …) (#214) * compatibility with Firefox 51+: broked this.windows getter (#228) * small internal enhancements and fixes
* unsafe CPOW usage (#208) * updated pt-PT locale (#210) * e10s: fixed private protocol (#211) * e10s: tweaks and fixes (#162) * e10s: single frame script (#213) * fixed recursion in wrapper for tab.setAttribute("image", …) (#214) * compatibility with Firefox 51+: broked this.windows getter (#228) * small internal enhancements and fixes
* unsafe CPOW usage (#208) * updated pt-PT locale (#210) * e10s: fixed private protocol (#211) * e10s: tweaks and fixes (#162) * e10s: single frame script (#213) * fixed recursion in wrapper for tab.setAttribute("image", …) (#214) * compatibility with Firefox 51+: broked this.windows getter (#228) * small internal enhancements and fixes
Test version: private_tab-0.1.9.2pre4-fx-sm.xpi (source code). |
Test Version work under 47.0.1 version. Will this "test" version will update automatically or it's better to update to the release to have automatic update ? Regards 🐸 |
(SyntaxError: non-generator method definitions may not contain yield) (see Infocatcher/Private_Tab#228)
There is custom update URL in test versions: Lines 14 to 17 in 78ce514
But for now I'm configure this only to update to release versions (so, test version will be auto-updated to next non-test release). |
Thanx for the reply ! 😄 |
(SyntaxError: non-generator method definitions may not contain yield) (see Infocatcher/Private_Tab#228)
(SyntaxError: non-generator method definitions may not contain yield) (see Infocatcher/Private_Tab#228)
Currently used (and doesn't work anymore):
Alternatives:
The text was updated successfully, but these errors were encountered: