Skip to content

Commit 6adfe35

Browse files
author
Robin Dennenmoser
committed
Fix for jQuery 3.1.1. Issue creativeaura#87 from creativeaura/threesixty-slider
1 parent 53f49a1 commit 6adfe35

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 2.0.6 (Nov 17th, 2015)
2+
- Fix for jQuery 3.1.1 [Issue #87](https://github.com/creativeaura/threesixty-slider/issues/87)
3+
14
## 2.0.5 (Jan 6th, 2015)
25
- Fixed typo for AppCongif . [Issue #59](https://github.com/creativeaura/threesixty-slider/issues/59)
36

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"name": "threesixty-slider",
33
"description": "360 degree Image Slider",
44
"main": "dist/threesixty.min.js",
5-
"version": "2.0.5",
5+
"version": "2.0.6",
66
"ignore": [
77
".jshintrc",
88
".editorconfig",
99
".bowerrc"
1010
],
1111
"dependencies": {},
1212
"devDependencies": {
13-
"jquery": "~1.8.3"
13+
"jquery": "~3.1.1"
1414
}
1515
}

dist/threesixty.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "threesixty-slider",
33
"description": "360 degree Image Slider",
4-
"version": "2.0.5",
4+
"version": "2.0.6",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/vml-webdev/threesixty-slider.git"

src/threesixty.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152

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

155-
$(image).load(function () {
155+
$(image).on("load", function(){
156156
base.imageLoaded();
157157
});
158158
};

tests/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<link rel='stylesheet' href='../node_modules/qunitjs/qunit/qunit.css'>
1010

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

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

0 commit comments

Comments
 (0)