Bootstrap loads now, otherwise dropdown etc does not work

This commit is contained in:
Nanne Baars 2020-12-06 14:07:38 +01:00 committed by Nanne Baars
parent 142631c7a0
commit 9b81cb44fa
3 changed files with 1154 additions and 7 deletions

File diff suppressed because it is too large Load Diff

View File

@ -29,6 +29,7 @@ require.config({
jqueryui: 'libs/jquery-ui.min',
underscore: 'libs/underscore-min',
backbone: 'libs/backbone-min',
bootstrap: 'libs/bootstrap.min',
text: 'libs/text',
templates: 'goatApp/templates',
polyglot: 'libs/polyglot.min'
@ -65,6 +66,7 @@ require([
'jqueryui',
'underscore',
'backbone',
'goatApp/goatApp'], function($,jqueryBase,jqueryVuln,jqueryui,_,Backbone,Goat){
'bootstrap',
'goatApp/goatApp'], function($,jqueryBase,jqueryVuln,jqueryui,_,Backbone,bootstrap,Goat){
Goat.initApp();
});

File diff suppressed because one or more lines are too long