When setting the path for jQuery, whenever I am using:
require.config({
paths: {
'jQuery': './libs/jquery-1.8.0.min'
}
});
Then:
define(['jQuery'], function($) {
console.log($);
};
$
is gonna be undefined.
However if I am using:
require.config({
paths: {
'jquery': './libs/jquery-1.8.0.min'
}
});
Then:
define(['jquery'], function($) {
console.log($);
};
Everything is working great all in a sudden.
What's the issue with defining jQuery's alias with jQuery
?
This was discussed more over here: https://github.com/jrburke/requirejs/issues/435
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With