Skip to content

Commit d058674

Browse files
committed
eslint fix
1 parent f26bd91 commit d058674

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/input/InputPlugin.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1401,10 +1401,10 @@ var InputPlugin = new Class({
14011401
gameObjects = [ gameObjects ];
14021402
}
14031403

1404-
var i;
14051404
var draggable = false;
14061405
var dropZone = false;
14071406
var cursor = false;
1407+
var useHandCursor = false;
14081408

14091409
// Config object?
14101410
if (IsPlainObject(shape))
@@ -1417,8 +1417,9 @@ var InputPlugin = new Class({
14171417
dropZone = GetFastValue(config, 'dropZone', false);
14181418
cursor = GetFastValue(config, 'cursor', false);
14191419
useHandCursor = GetFastValue(config, 'useHandCursor', false);
1420-
pixelPerfect = GetFastValue(config, 'pixelPerfect', false);
1421-
alphaTolerance = GetFastValue(config, 'alphaTolerance', 1);
1420+
1421+
var pixelPerfect = GetFastValue(config, 'pixelPerfect', false);
1422+
var alphaTolerance = GetFastValue(config, 'alphaTolerance', 1);
14221423

14231424
if (pixelPerfect)
14241425
{

0 commit comments

Comments
 (0)