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
Well, hmm. If you don't use the url package directly in your app, it doesn't actually export the symbol as a global, but just as a local in your individual app, so you can still get at the DOM API via window.URL. (If you do use the url package directly in your app, then it does overwrite the global, in order to support the browser debugger console better.)
Closing this. With NPM support in Meteor now, the expectation at this point is that developers shouldn't use the Meteor url package directly, but instead use the url NPM package (which is what Meteor uses internally anyway).
url is already not documented in the new docs (for probably a very good reason), and I'd guess (personally) is one of the first candidates (due to it's simplicity) for replacement in the Meteor 1.5 NPM-oriented-release.
The url package exports a global called URL. This conflicts with the new DOM API: https://developer.mozilla.org/en-US/docs/Web/API/Window.URL#Browser_compatibility. I noticed this while using this filesaver library, where polymer has the same problem, but is planning to fix it: eligrey/FileSaver.js#97.
The text was updated successfully, but these errors were encountered: