Add missing at sign before getFocusedWindowSize

Closes atom/collaboration#22
This commit is contained in:
Kevin Sawicki
2013-10-23 15:53:50 -07:00
parent 265e4ff43c
commit 378a7135b7

View File

@@ -300,7 +300,7 @@ class AtomApplication
if pack.urlMain
packagePath = @packages.resolvePackagePath(packageName)
bootstrapScript = path.resolve(packagePath, pack.urlMain)
new AtomWindow({bootstrapScript, @resourcePath, devMode, urlToOpen, initialSize: getFocusedWindowSize()})
new AtomWindow({bootstrapScript, @resourcePath, devMode, urlToOpen, initialSize: @getFocusedWindowSize()})
else
console.log "Package '#{pack.name}' does not have a url main: #{urlToOpen}"
else