0
0
Fork 0
mirror of https://github.com/liabru/matter-js.git synced 2025-01-13 16:18:50 -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]); Events.off(_engine, _sceneEvents[i]);
if (_mouseConstraint.events) { if (_mouseConstraint.events) {
for (var i = 0; i < _sceneEvents.length; i++) for (i = 0; i < _sceneEvents.length; i++)
Events.off(_mouseConstraint, _sceneEvents[i]); Events.off(_mouseConstraint, _sceneEvents[i]);
} }

View file

@ -8,8 +8,8 @@ var Sleeping = {};
(function() { (function() {
Sleeping._motionWakeThreshold = 0.18, Sleeping._motionWakeThreshold = 0.18;
Sleeping._motionSleepThreshold = 0.08, Sleeping._motionSleepThreshold = 0.08;
Sleeping._minBias = 0.9; Sleeping._minBias = 0.9;
/** /**