mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -05:00
Fix trailing comas.
This commit is contained in:
parent
34ad9045cc
commit
6fe60cff9d
3 changed files with 3 additions and 3 deletions
|
@ -50,5 +50,5 @@ var CanvasProvider = {
|
|||
// release can receive either a canvas or a context.
|
||||
release: function(obj) {
|
||||
this.canvases.push(obj.canvas ? obj.canvas : obj);
|
||||
},
|
||||
}
|
||||
};
|
||||
|
|
|
@ -176,7 +176,7 @@ var PathItem = Item.extend(/** @lends PathItem# */{
|
|||
break;
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
/**
|
||||
* Smooth bezier curves without changing the amount of segments or their
|
||||
|
|
|
@ -240,7 +240,7 @@ var Style = Base.extend(new function() {
|
|||
var size = this.getFontSize();
|
||||
return (/[a-z]/i.test(size) ? size + ' ' : size + 'px ')
|
||||
+ this.getFont();
|
||||
},
|
||||
}
|
||||
|
||||
// DOCS: why isn't the example code showing up?
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue