Skip to content

Commit

Permalink
Altered test project.
Browse files Browse the repository at this point in the history
  • Loading branch information
GREdens committed Dec 29, 2014
1 parent 16a8fea commit 7b81da6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Binary file modified dist/TooltipLink.mpk
Binary file not shown.
16 changes: 8 additions & 8 deletions src/TooltipLink/widget/FormTooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@
callback();
}
},

uninitialize : function() {
logger.debug(this.id + '.uninitialize');

if (typeof this._tooltipNode !== 'undefined' && this._tooltipNode) {
mxui.widget.destroyChildren(this._tooltipNode);
}
},

_onShow : function(e) {
logger.debug(this.id + ".onShow");
Expand Down Expand Up @@ -175,14 +183,6 @@
clearTimeout(this._hideTimer);
this._hideTimer = null;
}
},

uninitialize : function() {
logger.debug(this.id + '.uninitialize');

if (typeof this._tooltipNode !== 'undefined' && this._tooltipNode) {
mxui.widget.destroyChildren(this._tooltipNode);
}
}

});
Expand Down
2 changes: 1 addition & 1 deletion src/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
<file path="TooltipLink/widget/"/>
</files>
</clientModule>
</package>
</package>

0 comments on commit 7b81da6

Please sign in to comment.