Skip to content

Commit

Permalink
Fix for jQuery reference.
Browse files Browse the repository at this point in the history
  • Loading branch information
cebartling committed Apr 6, 2014
1 parent 5b10ef3 commit 3cd4431
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
Binary file added web-client/.DS_Store
Binary file not shown.
3 changes: 1 addition & 2 deletions web-client/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ module.exports = function (grunt) {
'<%= yeoman.app %>/scripts/namespaces.js',
'<%= yeoman.app %>/scripts/main.js',
'<%= yeoman.app %>/scripts/models/*.js',
'<%= yeoman.app %>/scripts/collections/*.js',
'<%= yeoman.app %>/scripts/views/*.js'
],
dest: '.tmp/scripts/combined-scripts.js'
Expand Down Expand Up @@ -146,7 +145,7 @@ module.exports = function (grunt) {
specs: 'test/spec/**/*-spec.js',
vendor: [
'<%= yeoman.app %>/bower_components/modernizr/modernizr.js',
'<%= yeoman.app %>/bower_components/jquery/jquery.js',
'<%= yeoman.app %>/bower_components/jquery/dist/jquery.js',
'<%= yeoman.app %>/bower_components/bootstrap/dist/js/bootstrap.js',
'<%= yeoman.app %>/bower_components/underscore/underscore.js',
'<%= yeoman.app %>/bower_components/backbone/backbone.js',
Expand Down
Binary file added web-client/app/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion web-client/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
</div>

<!-- build:js scripts/vendor.js -->
<script src="bower_components/jquery/jquery.js"></script>
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/underscore/underscore.js"></script>
<script src="bower_components/backbone/backbone.js"></script>
<script src="bower_components/handlebars/handlebars.js"></script>
Expand Down

0 comments on commit 3cd4431

Please sign in to comment.