Add missing semi-colon.

This commit is contained in:
Jürg Lehni 2016-06-14 15:26:08 +02:00
parent f6b77b7442
commit 6b3d8ecdfd

View file

@ -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);
}