Skip to content

Commit

Permalink
🇬🇧 Fixed type bug in onMouseMove.
Browse files Browse the repository at this point in the history
  • Loading branch information
wagerfield committed Apr 20, 2014
1 parent fea0ec5 commit 634fcb3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "parallax",
"description": "Parallax Engine that reacts to the orientation of a smart device.",
"version": "1.1.0",
"version": "1.1.1",
"license": "MIT",
"homepage": "http://wagerfield.github.io/parallax/",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion deploy/jquery.parallax.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@
Plugin.prototype.updateDimensions = function() {
this.ww = window.innerWidth;
this.wh = window.innerHeight;
this.wcw = this.ww / 2;
this.wcx = this.ww / 2;
this.wcy = this.wh / 2;
};

Expand Down
2 changes: 1 addition & 1 deletion deploy/jquery.parallax.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": "parallax",
"description": "Parallax Engine that reacts to the orientation of a smart device.",
"version": "1.1.0",
"version": "1.1.1",
"license": "MIT",
"homepage": "http://wagerfield.github.io/parallax/",
"author": "Matthew Wagerfield <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion source/jquery.parallax.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
Plugin.prototype.updateDimensions = function() {
this.ww = window.innerWidth;
this.wh = window.innerHeight;
this.wcw = this.ww / 2;
this.wcx = this.ww / 2;
this.wcy = this.wh / 2;
};

Expand Down

0 comments on commit 634fcb3

Please sign in to comment.