Browse Source

update

bug fix close by click on any place in modal window
master
Hedgehog 11 years ago
parent
commit
ae1ab04f69
  1. 9
      calm.js
  2. 2
      home.html
  3. 7
      interface_common.js

9
calm.js

@ -2,8 +2,9 @@ $(function(){ @@ -2,8 +2,9 @@ $(function(){
$('.post-text').on('click', 'a', function(e){
e.stopPropagation();
});
$(".modal-blackout").on('click', function(){
closeModal($(this));
if($(".modal-content").attr("style") != undefined){$(".modal-content").removeAttr("style")}
})
$(".cancel").on('click', function(e){
if($(".modal-content").attr("style") != undefined){$(".modal-content").removeAttr("style")};
})
})

2
home.html

@ -271,7 +271,7 @@ @@ -271,7 +271,7 @@
<!-- TEMPLATE INVÓLUCRO DO POST EXPANDIDO END -->
<!-- TEMPLATE DO MODAL GENÉRICO INIT -->
<div class="modal-blackout">
<div class="modal-blackout cancel">
<div class="modal-wrapper">
<div class="modal-header">
<h3></h3>

7
interface_common.js

@ -30,7 +30,7 @@ function openModal( modalClass ) @@ -30,7 +30,7 @@ function openModal( modalClass )
//fecha o modal removendo o conteúdo por detach
function closeModal($this)
{
{
var $body = $( "body" );
var $modalWindows = $( "body" ).children( ".modal-blackout" );
@ -440,7 +440,9 @@ var retweetSubmit = function(e) @@ -440,7 +440,9 @@ var retweetSubmit = function(e)
function initInterfaceCommon() {
$( "body" ).on( "click", ".cancel" , function() { closeModal($(this)); } );
$( "body" ).on( "click", function(event) {
if($(event.target).hasClass('cancel')) closeModal($(this));
});
$( ".post-reply" ).bind( "click", postReplyClick );
$( ".post-propagate" ).bind( "click", reTwistPopup );
$( ".userMenu-config-dropdown" ).bind( "click", dropDownMenu );
@ -460,4 +462,5 @@ function initInterfaceCommon() { @@ -460,4 +462,5 @@ function initInterfaceCommon() {
$( ".open-hashtag-modal").bind( "click", openHashtagModal );
$( ".open-following-modal").bind( "click", openFollowingModal );
$( ".userMenu-connections a").bind( "click", openMentionsModal );
}

Loading…
Cancel
Save