Skip to content

Commit 6fe60cf

Browse files
committed
Fix trailing comas.
1 parent 34ad904 commit 6fe60cf

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/canvas/CanvasProvider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@ var CanvasProvider = {
5050
// release can receive either a canvas or a context.
5151
release: function(obj) {
5252
this.canvases.push(obj.canvas ? obj.canvas : obj);
53-
},
53+
}
5454
};

src/path/PathItem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ var PathItem = Item.extend(/** @lends PathItem# */{
176176
break;
177177
}
178178
}
179-
},
179+
}
180180

181181
/**
182182
* Smooth bezier curves without changing the amount of segments or their

src/style/Style.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ var Style = Base.extend(new function() {
240240
var size = this.getFontSize();
241241
return (/[a-z]/i.test(size) ? size + ' ' : size + 'px ')
242242
+ this.getFont();
243-
},
243+
}
244244

245245
// DOCS: why isn't the example code showing up?
246246
/**

0 commit comments

Comments
 (0)