0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2024-12-26 13:49:01 -05:00

appease jshint

This commit is contained in:
liabru 2014-06-21 23:23:41 +01:00
parent 7eadea9d33
commit 89140aedf0
2 changed files with 3 additions and 3 deletions

View file

@ -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]);
}

View file

@ -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;
/**