mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-01-27 15:14:40 +00:00
Make clicking on the modal blackout overlay hide the modal
This commit is contained in:
parent
92a77aee78
commit
a772fcbc74
@ -32,14 +32,15 @@ function openModal( modalClass )
|
|||||||
function closeModal($this)
|
function closeModal($this)
|
||||||
{
|
{
|
||||||
var $body = $( "body" );
|
var $body = $( "body" );
|
||||||
var $modalWindow = $this.parents( ".modal-blackout" );
|
var $modalWindows = $( "body" ).children( ".modal-blackout" );
|
||||||
$modalWindow.fadeOut( "fast", function()
|
|
||||||
|
$modalWindows.fadeOut( "fast", function()
|
||||||
{
|
{
|
||||||
$modalWindow.detach();
|
$modalWindows.detach();
|
||||||
});
|
});
|
||||||
$body.css({
|
$body.css({
|
||||||
"overflow": "auto",
|
"overflow": "auto",
|
||||||
"margin-right": "0"
|
"margin-right": "0"
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -446,7 +447,7 @@ var retweetSubmit = function(e)
|
|||||||
|
|
||||||
|
|
||||||
function initInterfaceCommon() {
|
function initInterfaceCommon() {
|
||||||
$( "body" ).on( "click", ".cancel" , function() { closeModal($(this)); } );
|
$( "body, .cancel, .modal-blackout" ).on( "click", function() { closeModal($(this)); } );
|
||||||
$( ".post-reply" ).bind( "click", postReplyClick );
|
$( ".post-reply" ).bind( "click", postReplyClick );
|
||||||
$( ".post-propagate" ).bind( "click", reTwistPopup );
|
$( ".post-propagate" ).bind( "click", reTwistPopup );
|
||||||
$( ".userMenu-config-dropdown" ).bind( "click", dropDownMenu );
|
$( ".userMenu-config-dropdown" ).bind( "click", dropDownMenu );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user