From ddf457854627e798b9f54044c4e9006c77da5d5d Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Thu, 9 Jan 2014 10:01:31 -0200 Subject: [PATCH] revert patch that prevents updating modal with new posts (it just close) --- interface_common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface_common.js b/interface_common.js index 8c20656..fff49e2 100644 --- a/interface_common.js +++ b/interface_common.js @@ -447,7 +447,7 @@ var retweetSubmit = function(e) function initInterfaceCommon() { - $( "body, .cancel, .modal-blackout" ).on( "click", function() { closeModal($(this)); } ); + $( "body" ).on( "click", ".cancel" , function() { closeModal($(this)); } ); $( ".post-reply" ).bind( "click", postReplyClick ); $( ".post-propagate" ).bind( "click", reTwistPopup ); $( ".userMenu-config-dropdown" ).bind( "click", dropDownMenu );