グローバル jQuery オブジェクト (window.$ とおそらく window.jQuery) を取り除きたいです。
データメイン:
require.config({
paths: {
"jquery": "jquery-2.0.0"
},
shim: {
"bootstrap": {
deps: ["jquery"]
},
"jquery": {
deps: [],
init: function() {
return this.jQuery.noConflict(true);
},
exports: "jQuery"
}
}
});
require(["jquery", "bootstrap"], function($) {
// ...
});
このコードの何が問題になっていますか? 「init」は呼び出されません。