From 6b3d8ecdfd79eec8c9b679720576328b90ed1f06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Tue, 14 Jun 2016 15:26:08 +0200 Subject: [PATCH] Add missing semi-colon. --- src/item/Item.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/item/Item.js b/src/item/Item.js index c97ceb51..5e526262 100644 --- a/src/item/Item.js +++ b/src/item/Item.js @@ -1098,7 +1098,7 @@ new function() { // Injection scope for various item event handlers setScaling: function(/* scaling */) { var current = this.getScaling(), // Clone existing points since we're caching internally. - scaling = Point.read(arguments, 0, { clone: true, readNull: true }) + scaling = Point.read(arguments, 0, { clone: true, readNull: true }); if (current && scaling) { this.scale(scaling.x / current.x, scaling.y / current.y); }