Skip to content

Commit

Permalink
Fix for jQuery 3.1.1. Issue creativeaura#87 from creativeaura/threesi…
Browse files Browse the repository at this point in the history
…xty-slider
  • Loading branch information
Robin Dennenmoser committed Nov 17, 2016
1 parent 53f49a1 commit 6adfe35
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2.0.6 (Nov 17th, 2015)
- Fix for jQuery 3.1.1 [Issue #87](https://github.com/creativeaura/threesixty-slider/issues/87)

## 2.0.5 (Jan 6th, 2015)
- Fixed typo for AppCongif . [Issue #59](https://github.com/creativeaura/threesixty-slider/issues/59)

Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
"name": "threesixty-slider",
"description": "360 degree Image Slider",
"main": "dist/threesixty.min.js",
"version": "2.0.5",
"version": "2.0.6",
"ignore": [
".jshintrc",
".editorconfig",
".bowerrc"
],
"dependencies": {},
"devDependencies": {
"jquery": "~1.8.3"
"jquery": "~3.1.1"
}
}
4 changes: 2 additions & 2 deletions dist/threesixty.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "threesixty-slider",
"description": "360 degree Image Slider",
"version": "2.0.5",
"version": "2.0.6",
"repository": {
"type": "git",
"url": "http://github.com/vml-webdev/threesixty-slider.git"
Expand Down
2 changes: 1 addition & 1 deletion src/threesixty.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@

base.$el.find(AppConfig.imgList).append(li);

$(image).load(function () {
$(image).on("load", function(){
base.imageLoaded();
});
};
Expand Down
2 changes: 1 addition & 1 deletion tests/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<link rel='stylesheet' href='../node_modules/qunitjs/qunit/qunit.css'>

<!-- add any external libraries your code needs -->
<script src='../bower_components/jquery/jquery.js'></script>
<script src='../bower_components/jquery/dist/jquery.js'></script>

<script src='../src/threesixty.js'></script>
<!-- add any JS files under test (or put them in different .html files) -->
Expand Down

0 comments on commit 6adfe35

Please sign in to comment.