hide container after triggering save event

This commit is contained in:
vitalets
2013-01-17 14:52:04 +04:00
parent b0dd701b78
commit 983d011bc7
4 changed files with 10 additions and 6 deletions

@ -38,12 +38,14 @@
innerHide: function () {
this.$tip.hide(this.options.anim, $.proxy(function() {
this.$element.show();
this.tip().empty().remove();
this.innerDestroy();
}, this));
},
innerDestroy: function() {
this.tip().remove();
if(this.tip()) {
this.tip().empty().remove();
}
}
});