Merge pull request #2083 from johnhaley81/patch-1
Fix `window.open` with wrong name
This commit is contained in:
commit
69ef175ac5
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ window.open = (url, frameName='', features='') ->
|
||||||
value
|
value
|
||||||
options.x ?= options.left if options.left
|
options.x ?= options.left if options.left
|
||||||
options.y ?= options.top if options.top
|
options.y ?= options.top if options.top
|
||||||
options.title ?= name
|
options.title ?= frameName
|
||||||
options.width ?= 800
|
options.width ?= 800
|
||||||
options.height ?= 600
|
options.height ?= 600
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue