Skip to content

Commit

Permalink
appease jshint
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Jun 21, 2014
1 parent 7eadea9 commit 89140ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demo/js/Demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -1331,7 +1331,7 @@
Events.off(_engine, _sceneEvents[i]);

if (_mouseConstraint.events) {
for (var i = 0; i < _sceneEvents.length; i++)
for (i = 0; i < _sceneEvents.length; i++)
Events.off(_mouseConstraint, _sceneEvents[i]);
}

Expand Down
4 changes: 2 additions & 2 deletions src/core/Sleeping.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ var Sleeping = {};

(function() {

Sleeping._motionWakeThreshold = 0.18,
Sleeping._motionSleepThreshold = 0.08,
Sleeping._motionWakeThreshold = 0.18;
Sleeping._motionSleepThreshold = 0.08;
Sleeping._minBias = 0.9;

/**
Expand Down

0 comments on commit 89140ae

Please sign in to comment.