Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

option for appending-target #9

Closed
dittodhole opened this issue Oct 22, 2010 · 2 comments
Closed

option for appending-target #9

dittodhole opened this issue Oct 22, 2010 · 2 comments

Comments

@dittodhole
Copy link

if you are using eg. asp.net, it would be nice to have an option for the appending target selector.

a rudimental fix for Version 2.35 (23-SEP-2010):

change

//$([lyr1[0],lyr2[0],lyr3[0]]).appendTo(full ? 'body' : el);
var layers = [lyr1,lyr2,lyr3], $par = full ? $('body') : $(el);

to

//$([lyr1[0],lyr2[0],lyr3[0]]).appendTo(full ? 'form' : el);
var layers = [lyr1,lyr2,lyr3], $par = full ? $('form') : $(el);

and

    els = $('body').children().filter('.blockUI').add('body > .blockUI');

to

    els = $('form').children().filter('.blockUI').add('form > .blockUI');
@dittodhole
Copy link
Author

oh, yes ... i forgot the lineNumbers for easier finding:

first replacement: line 272
second replacement: line 389

@dittodhole
Copy link
Author

closing due to lack of interest.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant