Merge pull request #4184 from adidahiya/drop

Add 'element' and 'tether' to Drop typings
This commit is contained in:
Horiuchi_H
2015-04-24 09:15:27 +09:00
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -22,6 +22,8 @@ d.remove();
d.toggle();
d.position();
d.destroy();
d.element.appendChild(document.createElement("div"));
d.tether.position();
d.on("open", () => null);
d.on("close", () => null);
+2
View File
@@ -30,6 +30,8 @@ declare module drop {
interface Drop {
content: HTMLElement;
element: HTMLElement;
tether: tether.Tether;
open(): void;
close(): void;
remove(): void;