Skip to content
This repository has been archived by the owner on Jan 14, 2022. It is now read-only.

Commit

Permalink
Updates jQuery version to not allow 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rafibomb committed Jul 5, 2016
1 parent 097429d commit 15d9829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bower.json
Expand Up @@ -7,7 +7,7 @@
"ignore": [
],
"dependencies": {
"jquery": ">= 2.1.0",
"jquery": "~2.1.0",
"modernizr": "2.8.3",
"fastclick": ">=0.6.11",
"jquery.cookie": "~1.4.0",
Expand Down

3 comments on commit 15d9829

@sanis
Copy link

@sanis sanis commented on 15d9829 Nov 15, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be released I guess :) 👍

@stevetyler
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please release this! My build breaks without it. Thanks

@stevetyler
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

On further investigation it's broken since jQuery 1.8.0 where window.load was deprecated and I was getting 'url.indexOf is not a function' error. I've changed $(window).load(func.. to $(window).on('load', func.. in the js files and it works now. Would be great if this could be changed in the build. Thanks

Please sign in to comment.