Merge pull request #3137 from allanhvam/master

useAnimation made optional in Callout
This commit is contained in:
Masahiro Wakame
2014-11-14 10:48:58 +09:00
+2 -2
View File
@@ -861,9 +861,9 @@ declare class Callout {
/** Re-renders the actions menu. Call after the actions menu is changed. */
refreshActions(): void;
/** Display the callout. Animation can be used only for IE9+ */
open(useAnimation: boolean);
open(useAnimation?: boolean);
/** Hide the callout. Animation can be used only for IE9+ */
close(useAnimation: boolean);
close(useAnimation?: boolean);
/** Display if hidden, hide if shown. */
toggle(): void;
/** Do not call this directly. Instead, use CalloutManager.remove */