Missing Semicolon
JavaScript may automatically insert the semicolon in places that may break minified code.
This commit is contained in:
parent
ffe425f305
commit
bf807ccf28
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue