-$('#ajax-modal').html('<%= escape_javascript render partial: 'sudo_mode/new_modal' %>');
-showModal('ajax-modal', '400px');
+$("body").append($("<div>", {id: "sudo-modal"}).hide());
+$('#sudo-modal').html('<%= escape_javascript render partial: 'sudo_mode/new_modal' %>');
+showModal('sudo-modal', '400px');
$('#sudo_password').focus();
-
var el = $('#'+id).first();
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);
el.dialog({
width: width,
modal: true,
modal = $('#ajax-modal');
}
modal.dialog("close");
+ // restores existing modals in front of the transparent background
+ $(".modal").zIndex(101);
}
function submitPreview(url, form, target) {