Bootstrap requires jQuery

This commit is contained in:
Nanne Baars 2020-12-06 14:14:03 +01:00 committed by Nanne Baars
parent 9b81cb44fa
commit ead1d6fffb

View File

@ -49,6 +49,10 @@ require.config({
underscore: {
exports: "_"
},
bootstrap: {
deps: ['jquery'],
exports: 'Bootstrap'
},
backbone: {
deps: ['underscore', 'jquery'],
exports: 'Backbone'
@ -67,6 +71,6 @@ require([
'underscore',
'backbone',
'bootstrap',
'goatApp/goatApp'], function($,jqueryBase,jqueryVuln,jqueryui,_,Backbone,bootstrap,Goat){
'goatApp/goatApp'], function($,jqueryBase,jqueryVuln,jqueryui,_,Backbone,Bootstrap,Goat){
Goat.initApp();
});