Rev1069, Allow to specify window parameters
This commit is contained in:
parent
34c5a7ccde
commit
6496a6125f
3 changed files with 3 additions and 3 deletions
|
@ -158,7 +158,7 @@ class Wrapper
|
|||
w.opener = null
|
||||
w.location = params
|
||||
else
|
||||
w = window.open(null, params[1])
|
||||
w = window.open(null, params[1], params[2])
|
||||
w.opener = null
|
||||
w.location = params[0]
|
||||
|
||||
|
|
|
@ -955,7 +955,7 @@ jQuery.extend( jQuery.easing,
|
|||
w.opener = null;
|
||||
return w.location = params;
|
||||
} else {
|
||||
w = window.open(null, params[1]);
|
||||
w = window.open(null, params[1], params[2]);
|
||||
w.opener = null;
|
||||
return w.location = params[0];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue