Skip to content

Commit 634fcb3

Browse files
committed
🇬🇧 Fixed type bug in onMouseMove.
1 parent fea0ec5 commit 634fcb3

5 files changed

+5
-5
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "parallax",
33
"description": "Parallax Engine that reacts to the orientation of a smart device.",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"license": "MIT",
66
"homepage": "http://wagerfield.github.io/parallax/",
77
"authors": [

deploy/jquery.parallax.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@
225225
Plugin.prototype.updateDimensions = function() {
226226
this.ww = window.innerWidth;
227227
this.wh = window.innerHeight;
228-
this.wcw = this.ww / 2;
228+
this.wcx = this.ww / 2;
229229
this.wcy = this.wh / 2;
230230
};
231231

deploy/jquery.parallax.min.js

+1-1
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": "parallax",
33
"description": "Parallax Engine that reacts to the orientation of a smart device.",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"license": "MIT",
66
"homepage": "http://wagerfield.github.io/parallax/",
77
"author": "Matthew Wagerfield <[email protected]>",

source/jquery.parallax.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
Plugin.prototype.updateDimensions = function() {
195195
this.ww = window.innerWidth;
196196
this.wh = window.innerHeight;
197-
this.wcw = this.ww / 2;
197+
this.wcx = this.ww / 2;
198198
this.wcy = this.wh / 2;
199199
};
200200

0 commit comments

Comments
 (0)