We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Getting the following error compiling my app with ember-dragula using Ember 2.12 and the latest version of Fastboot.
ReferenceError: document is not defined
It looks like this is the offending code, but I don't see anything like it in the repo:
module.exports = useNative() ? NativeCustomEvent : // IE >= 9 'function' === typeof document.createEvent ? function CustomEvent (type, params) { var e = document.createEvent('CustomEvent'); if (params) { e.initCustomEvent(type, params.bubbles, params.cancelable, params.detail); } else { e.initCustomEvent(type, false, false, void 0); } return e; } :
The text was updated successfully, but these errors were encountered:
Added the library in ember-cli-build.js. Same issue pops up.
This appears to be a problem with the latest version of the library, not the addon.
Sorry, something went wrong.
No branches or pull requests
Getting the following error compiling my app with ember-dragula using Ember 2.12 and the latest version of Fastboot.
It looks like this is the offending code, but I don't see anything like it in the repo:
The text was updated successfully, but these errors were encountered: