diff --git a/Gruntfile.js b/Gruntfile.js index e22820131e..6c0d976cb7 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -19,6 +19,7 @@ module.exports = function(grunt) { files: { 'build/app.js': [ 'public/bower_components/jquery/jquery.min.js', + 'public/bower_components/jquery.cookie/jquery.cookie.js', 'public/bower_components/bootstrap-growl/jquery.bootstrap-growl.min.js', 'public/bower_components/bootstrap-tour/build/js/bootstrap-tour.min.js', 'public/bower_components/angular/angular.min.js', diff --git a/views/index.jade b/views/index.jade index 7e7cc338a4..d174b42099 100644 --- a/views/index.jade +++ b/views/index.jade @@ -27,6 +27,7 @@ html - }else{ // Remember to update the file list in Gruntfile.js! script(type='text/javascript', src='/bower_components/jquery/jquery.min.js') + script(type='text/javascript', src='/bower_components/jquery.cookie/jquery.cookie.js') script(type='text/javascript', src='/bower_components/bootstrap-growl/jquery.bootstrap-growl.min.js') script(type='text/javascript', src='/bower_components/bootstrap-tour/build/js/bootstrap-tour.min.js') script(type='text/javascript', src='/bower_components/angular/angular.min.js')