[#6636] Fix loading z-index to be above the dialog window

This commit is contained in:
Eric Davis
2011-10-14 08:36:51 -07:00
parent 7f839c2541
commit 257afa249f

View File

@@ -1,5 +1,5 @@
jQuery(function($) { jQuery(function($) {
$("#ajax-indicator").ajaxStart(function(){ $(this).show(); }); $("#ajax-indicator").ajaxStart(function(){ $(this).show().css('z-index', '9999'); });
$("#ajax-indicator").ajaxStop(function(){ $(this).hide(); }); $("#ajax-indicator").ajaxStop(function(){ $(this).hide(); });
var right_align = $('#contract-terms .finance tr td:nth-child ~ td, .c_overview table.right tr td:nth-child ~ td, #deliverables table tr.click td:nth-child(5) ~ td, .deliverable_finance_table tr.aright td:nth-child ~ td'); var right_align = $('#contract-terms .finance tr td:nth-child ~ td, .c_overview table.right tr td:nth-child ~ td, #deliverables table tr.click td:nth-child(5) ~ td, .deliverable_finance_table tr.aright td:nth-child ~ td');