Bootstrap est distribué en CDN en
Est-il possible de charger Bootstrap avec Require.JS 2.x (AMD shimmed ou natif)?
Comment il est possible de charger Bootstrap, ou tout JS minifié, directement à partir de l'URL CDN avec Require.js
requirejs.config({
appDir: ".",
baseUrl: "js",
paths: {
/* Load jquery from google cdn. On fail, load local file. */
'jquery': ['//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min', 'libs/jquery-min'],
/* Load bootstrap from cdn. On fail, load local file. */
'bootstrap': ['//netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.', 'libs/bootstrap-min']
},
shim: {
/* Set bootstrap dependencies (just jQuery) */
'bootstrap' : ['jquery']
}
});
require(['jquery', 'bootstrap'], function($) {
console.log("Loaded :)");
return {};
});