comparison OrthancServer/OrthancExplorer/libs/jquery.blockui.js @ 4959:29bcc3f47f2a

typos
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 23 Mar 2022 12:19:59 +0100
parents d25f4c0fa160
children
comparison
equal deleted inserted replaced
4958:924b15d983c7 4959:29bcc3f47f2a
143 allowBodyStretch: true, 143 allowBodyStretch: true,
144 144
145 // enable if you want key and mouse events to be disabled for content that is blocked 145 // enable if you want key and mouse events to be disabled for content that is blocked
146 bindEvents: true, 146 bindEvents: true,
147 147
148 // be default blockUI will supress tab navigation from leaving blocking content 148 // be default blockUI will suppress tab navigation from leaving blocking content
149 // (if bindEvents is true) 149 // (if bindEvents is true)
150 constrainTabKey: true, 150 constrainTabKey: true,
151 151
152 // fadeIn time in millis; set to 0 to disable fadeIn on block 152 // fadeIn time in millis; set to 0 to disable fadeIn on block
153 fadeIn: 200, 153 fadeIn: 200,
219 219
220 $(el).data('blockUI.onUnblock', opts.onUnblock); 220 $(el).data('blockUI.onUnblock', opts.onUnblock);
221 var z = opts.baseZ; 221 var z = opts.baseZ;
222 222
223 // blockUI uses 3 layers for blocking, for simplicity they are all used on every platform; 223 // blockUI uses 3 layers for blocking, for simplicity they are all used on every platform;
224 // layer1 is the iframe layer which is used to supress bleed through of underlying content 224 // layer1 is the iframe layer which is used to suppress bleed through of underlying content
225 // layer2 is the overlay layer which has opacity and a wait cursor (by default) 225 // layer2 is the overlay layer which has opacity and a wait cursor (by default)
226 // layer3 is the message content that is displayed while blocking 226 // layer3 is the message content that is displayed while blocking
227 227
228 var lyr1 = ($.browser.msie || opts.forceIframe) 228 var lyr1 = ($.browser.msie || opts.forceIframe)
229 ? $('<iframe class="blockUI" style="z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0" src="'+opts.iframeSrc+'"></iframe>') 229 ? $('<iframe class="blockUI" style="z-index:'+ (z++) +';display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0" src="'+opts.iframeSrc+'"></iframe>')