Make dijit.Tooltip show and hide methods static. Fixes #16303. (#20263)

* Make dijit.Tooltip show and hide methods static. Fixes #16303.

* Revert unintended deletion of type reference.

* Move type reference back to the correct file.
This commit is contained in:
navels
2017-10-09 16:08:03 -07:00
committed by Wesley Wigham
parent 3478eb879d
commit bd9f31119c
+3 -3
View File
@@ -29946,7 +29946,7 @@ declare module dijit {
*
* @param aroundNode
*/
hide(aroundNode: any): any;
static hide(aroundNode: any): any;
/**
* Return true if this widget can currently be focused
* and false if not
@@ -30107,7 +30107,7 @@ declare module dijit {
* @param rtl OptionalCorresponds to WidgetBase.dir attribute, where false means "ltr" and truemeans "rtl"; specifies GUI direction, not text direction.
* @param textDir OptionalCorresponds to WidgetBase.textdir attribute; specifies direction of text.
*/
show(innerHTML: String, aroundNode: Object, position: String[], rtl: boolean, textDir: String): any;
static show(innerHTML: String, aroundNode: Object, position?: String[], rtl?: boolean, textDir?: String): any;
/**
*
*/
@@ -106941,4 +106941,4 @@ declare module "dijit/ConfirmDialog" {
declare module "dijit/_ConfirmDialogMixin" {
var exp: typeof dijit._ConfirmDialogMixin;
export=exp;
}
}