mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-06 04:42:15 -05:00
Add missing colon.
This commit is contained in:
parent
4514c63ed4
commit
83df011e1d
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ Path.inject({ statics: new function() {
|
||||||
Rectangle: function(rect) {
|
Rectangle: function(rect) {
|
||||||
rect = Rectangle.read(arguments);
|
rect = Rectangle.read(arguments);
|
||||||
var left = rect.x,
|
var left = rect.x,
|
||||||
top = rect.y
|
top = rect.y,
|
||||||
right = left + rect.width,
|
right = left + rect.width,
|
||||||
bottom = top + rect.height,
|
bottom = top + rect.height,
|
||||||
path = new Path();
|
path = new Path();
|
||||||
|
|
Loading…
Reference in a new issue