mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Add missing semi-colon.
This commit is contained in:
parent
f6b77b7442
commit
6b3d8ecdfd
1 changed files with 1 additions and 1 deletions
|
@ -1098,7 +1098,7 @@ new function() { // Injection scope for various item event handlers
|
||||||
setScaling: function(/* scaling */) {
|
setScaling: function(/* scaling */) {
|
||||||
var current = this.getScaling(),
|
var current = this.getScaling(),
|
||||||
// Clone existing points since we're caching internally.
|
// 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) {
|
if (current && scaling) {
|
||||||
this.scale(scaling.x / current.x, scaling.y / current.y);
|
this.scale(scaling.x / current.x, scaling.y / current.y);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue