Skip to content

Commit

Permalink
Fixed jQuery version to not use the buggy 2.1.1
Browse files Browse the repository at this point in the history
- Specifically, our test files ocassionally did things like...
$(listOfElements[2]).click();
In 2.1.1, re-wrapping an element in jQuery worked for finding, but
you couldn't actually trigger events from it.

So just dropping down to 2.0.3 which is what we're using on the
main front-end apps, and works properly.
  • Loading branch information
blakewest committed Sep 30, 2014
1 parent 24f98c5 commit 18c7944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"tests"
],
"dependencies": {
"jQuery": "~2.1.1",
"jQuery": "~2.0.3",
"lodash": "~2.4.1"
}
}

0 comments on commit 18c7944

Please sign in to comment.