Archived
1
0
This commit is contained in:
Jeff Becker 2017-01-16 14:40:01 -05:00
parent cfa83a7db8
commit 1b18fc89a2

View File

@ -174,7 +174,7 @@ ReplyBox.prototype.hide = function() {
var self = this; var self = this;
if(!self.visible()) return; if(!self.visible()) return;
self._open = false; self._open = false;
$(self.elem).fadeout(400, function() { $(self.elem).fadeOut(400, function() {
self.submit.onclick = function(ev) {}; self.submit.onclick = function(ev) {};
}); });
} }