Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Oops
Browse files Browse the repository at this point in the history
  • Loading branch information
asgvard committed Feb 14, 2019
1 parent 3baca31 commit 81ddc43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/spatialNavigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ var SpatialNavigation = function () {
* Flag used to block key events from this service
* @type {boolean}
*/
this.paused = true;
this.paused = false;

this.onKeyEvent = this.onKeyEvent.bind(this);
this.pause = this.pause.bind(this);
Expand Down
2 changes: 1 addition & 1 deletion src/spatialNavigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class SpatialNavigation {
* Flag used to block key events from this service
* @type {boolean}
*/
this.paused = true;
this.paused = false;

this.onKeyEvent = this.onKeyEvent.bind(this);
this.pause = this.pause.bind(this);
Expand Down

0 comments on commit 81ddc43

Please sign in to comment.