Fix trailing comas.

This commit is contained in:
Jürg Lehni 2013-06-12 17:42:38 -07:00
parent 34ad9045cc
commit 6fe60cff9d
3 changed files with 3 additions and 3 deletions

View file

@ -50,5 +50,5 @@ var CanvasProvider = {
// release can receive either a canvas or a context. // release can receive either a canvas or a context.
release: function(obj) { release: function(obj) {
this.canvases.push(obj.canvas ? obj.canvas : obj); this.canvases.push(obj.canvas ? obj.canvas : obj);
}, }
}; };

View file

@ -176,7 +176,7 @@ var PathItem = Item.extend(/** @lends PathItem# */{
break; break;
} }
} }
}, }
/** /**
* Smooth bezier curves without changing the amount of segments or their * Smooth bezier curves without changing the amount of segments or their

View file

@ -240,7 +240,7 @@ var Style = Base.extend(new function() {
var size = this.getFontSize(); var size = this.getFontSize();
return (/[a-z]/i.test(size) ? size + ' ' : size + 'px ') return (/[a-z]/i.test(size) ? size + ' ' : size + 'px ')
+ this.getFont(); + this.getFont();
}, }
// DOCS: why isn't the example code showing up? // DOCS: why isn't the example code showing up?
/** /**