Browse Source

Merge pull request #2083 from johnhaley81/patch-1

Fix `window.open` with wrong name
Kevin Sawicki 9 years ago
parent
commit
69ef175ac5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      atom/renderer/lib/override.coffee

+ 1 - 1
atom/renderer/lib/override.coffee

@@ -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