From bf807ccf28bfc31d3d6e9074436a71c957f83614 Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 5 Apr 2013 10:33:36 -0700 Subject: [PATCH] Missing Semicolon JavaScript may automatically insert the semicolon in places that may break minified code. --- src/pixi/InteractionManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pixi/InteractionManager.js b/src/pixi/InteractionManager.js index 1ea5c1f..731cfe1 100644 --- a/src/pixi/InteractionManager.js +++ b/src/pixi/InteractionManager.js @@ -157,7 +157,7 @@ PIXI.InteractionManager.prototype.hitTest = function(interactionData) tempPoint.y = a00 * id * global.y + -a10 * id * global.x + (-a12 * a00 + a02 * a10) * id; - var x1 = -item.width * item.anchor.x + var x1 = -item.width * item.anchor.x; if(tempPoint.x > x1 && tempPoint.x < x1 + item.width) {