ソースを参照

Fix confirmation box text (#2980)

Jaap Marcus 3 年 前
コミット
5b20a6238e
1 ファイル変更4 行追加0 行削除
  1. 4 0
      web/js/events.js

+ 4 - 0
web/js/events.js

@@ -148,6 +148,10 @@ VE.helpers.createConfirmationDialog = function(elm, dialog_title, confirmed_loca
                 .find(".ui-button")
                 .eq(1) // the first button
                 .addClass("cancel");
+            $(this).closest(".ui-dialog")
+                .find(".ui-dialog-content:first")
+                .removeClass('u-hidden');
+            
         }
     }