Filipe Costa
Filipe Costa
@alexander-akait Given this is a configuration accepted by NPM, can't webpack handle this transparently as well? Thanks!
Hi @tejacques, That's good news! We have an important release tomorrow morning. Btw, I'm using crosstab as a bower dependency (v0.2.11) maybe it's already fixed on v0.2.12. I'll test it....
Ok @tejacques, I've updated the library to v0.2.12 and It didn't change the behavior, so I've started debuging it. I've added a lot of logs to check what's going wrong,...
I think that just removing all handlers on unload fixes the issue: ``` function unload() { window.removeEventListener('storage', onStorageEvent); window.removeEventListener('beforeunload', unload); window.removeEventListener('DOMContentLoaded', swapUnloadEvents); eventHandler.removeListener(util.eventTypes.tabClosed, onTabClosed); eventHandler.removeListener(util.eventTypes.tabUpdated, onTabUpdated); eventHandler.removeListener(util.eventTypes.tabPromoted, onTabPromoted); // ......
Cool! I would be proud to contribute with a PR. Maybe tomorrow I can do it (for today I'll leave just as a temporary fix on the code). Thanks
@tejacques didn't have available time yesterday, neither today. Feel free to do it if you have a chance. Thanks
Hi @tejacques, I'm really concerned about this "frozen tab environment detected" error because sometimes it happens and there's no easy workaround for the user. And because crosstab is a really...
Well, it's better indeed. You don't like it to be an optional test? In my case the app will never be run on mobile. Or alternatively, can't the timeout be...
I love semver :+1:, and your idea on creating configurable instances of crosstab is very good. I think that backporting it's a fair solution. Maybe it would not solve my...
I got the same problem. In my case, I'm not using Babel, just plain ES6 with imports/exports. So the issue is that `ng-annotate` doesn't support the ES6 syntax (and will...