Merge pull request #2011 from enternet/patch-7

RaphaelPaper.forEach() returns RaphaelPaper
This commit is contained in:
Masahiro Wakame
2014-04-09 23:44:27 +09:00
+1 -1
View File
@@ -200,7 +200,7 @@ interface RaphaelPaper {
clear(): void;
defs: SVGDefsElement;
ellipse(x: number, y: number, rx: number, ry: number): RaphaelElement;
forEach(callback: (el: RaphaelElement) => boolean, thisArg?: any): RaphaelStatic;
forEach(callback: (el: RaphaelElement) => boolean, thisArg?: any): RaphaelPaper;
getById(id: number): RaphaelElement;
getElementByPoint(x: number, y: number): RaphaelElement;
getElementsByPoint(x: number, y: number): RaphaelSet;