]> source.dussan.org Git - redmine.git/commitdiff
Fixed r14339 for when closing the dialog by using the upper-right cross (#19851).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 19 Jun 2015 20:09:05 +0000 (20:09 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Fri, 19 Jun 2015 20:09:05 +0000 (20:09 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@14340 e93f8b46-1217-0410-a6f0-8f06a7374b81

public/javascripts/application.js

index 775ad592f7a686fc2018e9d285251601753001e5..0fe2c4cd618194f6e3814f231df340c1d37c4274 100644 (file)
@@ -391,6 +391,8 @@ function showModal(id, width, title) {
     resizable: false,
     dialogClass: 'modal',
     title: title
+  }).on('dialogclose', function(){
+    $(".modal").zIndex(101);
   });
   el.find("input[type=text], input[type=submit]").first().focus();
 }
@@ -403,8 +405,6 @@ function hideModal(el) {
     modal = $('#ajax-modal');
   }
   modal.dialog("close");
-  // restores existing modals in front of the transparent background
-  $(".modal").zIndex(101);
 }
 
 function submitPreview(url, form, target) {