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
When using delorean with require.js - the preferred way of using flight.js - via
var Flux = require('delorean').Flux
I get Uncaught TypeError: undefined is not a function in delorean.js:105.
Uncaught TypeError: undefined is not a function
Thanks for help and thanks for the great job!
The text was updated successfully, but these errors were encountered:
Hello,
If you are using require.js, then you should use AMD way:
require('delorean.js', function (DeLorean) { var Flux = DeLorean.Flux; // ... });
Sorry, something went wrong.
Hey thanks for your quick reply!
As I understand it both methods are equal, hence I get the same error when I use the AMD way as well..
Thanks!
I'm going to test it and fix! :)
No branches or pull requests
When using delorean with require.js - the preferred way of using flight.js - via
var Flux = require('delorean').Flux
I get
Uncaught TypeError: undefined is not a function
in delorean.js:105.Thanks for help and thanks for the great job!
The text was updated successfully, but these errors were encountered: