Merge pull request #6443 from kashlakov/master

Add missed required parameter 'el: RapaelElement' to insertAfter() and insertBefore() methods
This commit is contained in:
Masahiro Wakame
2015-11-02 20:50:28 +09:00
+4 -4
View File
@@ -42,8 +42,8 @@ interface RaphaelElement {
hide(): RaphaelElement;
hover(f_in: Function, f_out: Function, icontext?: any, ocontext?: any): RaphaelElement;
id: string;
insertAfter(): RaphaelElement;
insertBefore(): RaphaelElement;
insertAfter(el: RaphaelElement): RaphaelElement;
insertBefore(el: RaphaelElement): RaphaelElement;
isPointInside(x: number, y: number): boolean;
isVisible(): boolean;
matrix: RaphaelMatrix;
@@ -129,8 +129,8 @@ interface RaphaelSet {
hide(): RaphaelSet;
hover(f_in: Function, f_out: Function, icontext?: any, ocontext?: any): RaphaelSet;
id: string;
insertAfter(): RaphaelSet;
insertBefore(): RaphaelSet;
insertAfter(el: RaphaelElement): RaphaelSet;
insertBefore(el: RaphaelElement): RaphaelSet;
isPointInside(x: number, y: number): boolean;
isVisible(): boolean;
matrix: RaphaelMatrix;