mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -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 */) {
|
||||
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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue