Merge pull request #2083 from johnhaley81/patch-1

Fix `window.open` with wrong name
This commit is contained in:
Kevin Sawicki 2015-07-01 09:12:02 -07:00
commit 69ef175ac5

View file

@ -45,7 +45,7 @@ window.open = (url, frameName='', features='') ->
value
options.x ?= options.left if options.left
options.y ?= options.top if options.top
options.title ?= name
options.title ?= frameName
options.width ?= 800
options.height ?= 600