mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-19 06:00:56 -05:00
Do not exceed 80 chars per line.
This commit is contained in:
parent
2249f09223
commit
df5c33571f
1 changed files with 3 additions and 3 deletions
|
@ -167,9 +167,9 @@ var PaperScript = this.PaperScript = new function() {
|
|||
// Within this, use a function scope, so local variables to not try
|
||||
// and set themselves on the scope object.
|
||||
(function() {
|
||||
var onEditOptions, onSelect, onDeselect, onReselect, onMouseDown,
|
||||
onMouseUp, onMouseDrag, onMouseMove, onKeyDown, onKeyUp,
|
||||
onFrame, onResize;
|
||||
var onEditOptions, onSelect, onDeselect, onReselect,
|
||||
onMouseDown, onMouseUp, onMouseDrag, onMouseMove,
|
||||
onKeyDown, onKeyUp, onFrame, onResize;
|
||||
res = eval(compile(code));
|
||||
if (tool) {
|
||||
// We could do this instead to avoid eval(), but it's longer
|
||||
|
|
Loading…
Reference in a new issue