]> source.dussan.org Git - redmine.git/commitdiff
Merged r18377 from trunk to 4.0-stable (#31870).
authorGo MAEDA <maeda@farend.jp>
Fri, 13 Sep 2019 14:44:20 +0000 (14:44 +0000)
committerGo MAEDA <maeda@farend.jp>
Fri, 13 Sep 2019 14:44:20 +0000 (14:44 +0000)
git-svn-id: http://svn.redmine.org/redmine/branches/4.0-stable@18467 e93f8b46-1217-0410-a6f0-8f06a7374b81

public/javascripts/application.js

index 75848dd2cccd3459d59bd1e23f0be35b67ae8ae2..b05e28d468b4e27c483e07510b398f771b56d951 100644 (file)
@@ -426,7 +426,7 @@ function showModal(id, width, title) {
   if (el.length === 0 || el.is(':visible')) {return;}
   if (!title) title = el.find('h3.title').text();
   // moves existing modals behind the transparent background
-  $(".modal").zIndex(99);
+  $(".modal").css('zIndex',99);
   el.dialog({
     width: width,
     modal: true,
@@ -434,7 +434,7 @@ function showModal(id, width, title) {
     dialogClass: 'modal',
     title: title
   }).on('dialogclose', function(){
-    $(".modal").zIndex(101);
+    $(".modal").css('zIndex',101);
   });
   el.find("input[type=text], input[type=submit]").first().focus();
 }