Skip to content

Commit

Permalink
#40,#41, minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
malsup committed Sep 16, 2012
1 parent 24809df commit 4cc70cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jquery.blockUI.js
Expand Up @@ -326,7 +326,7 @@
}

// simulate fixed position
$.each([lyr1,lyr2,lyr3], function(i,o) {
$.each(layers, function(i,o) {
var s = o[0].style;
s.position = 'absolute';
if (i < 2) {
Expand Down Expand Up @@ -422,7 +422,7 @@
if (full) // crazy selector to handle odd field errors in ie6/7
els = $('body').children().filter('.blockUI').add('body > .blockUI');
else
els = $('>.blockUI', el);
els = $el.find('>.blockUI');

if (full)
pageBlock = pageBlockEls = null;
Expand Down

0 comments on commit 4cc70cb

Please sign in to comment.