diff --git a/Atom/ClientWindow.xib b/Atom/ClientWindow.xib index d280e167c..4bd995af9 100644 --- a/Atom/ClientWindow.xib +++ b/Atom/ClientWindow.xib @@ -1,7 +1,7 @@ - 1060 + 1070 11C74 1938 1138.23 @@ -40,7 +40,7 @@ 2 {{196, 240}, {637, 578}} 544735232 - Window + NSWindow @@ -50,6 +50,7 @@ {637, 578} + {{0, 0}, {2560, 1418}} {10000000000000, 10000000000000} @@ -184,10 +185,6 @@ 0 IBCocoaFramework - - com.apple.InterfaceBuilder.CocoaPlugin.macosx - - com.apple.InterfaceBuilder.CocoaPlugin.InterfaceBuilder3 diff --git a/benchmark/benchmark-bootstrap.coffee b/benchmark/benchmark-bootstrap.coffee index af5916cde..84a0a4fcb 100644 --- a/benchmark/benchmark-bootstrap.coffee +++ b/benchmark/benchmark-bootstrap.coffee @@ -5,6 +5,8 @@ nakedLoad 'jasmine-focused' $ = require 'jquery' +document.title = "Benchmark Suite" + $('head').append $$ -> @link rel: "stylesheet", type: "text/css", href: "static/jasmine.css" @@ -20,5 +22,4 @@ jasmineEnv.addReporter(trivialReporter) jasmineEnv.specFilter = (spec) -> trivialReporter.specFilter(spec) require 'benchmark-suite' -jasmineEnv.execute() - +jasmineEnv.execute() \ No newline at end of file diff --git a/spec/spec-bootstrap.coffee b/spec/spec-bootstrap.coffee index d39d4cb7d..ba40035f9 100644 --- a/spec/spec-bootstrap.coffee +++ b/spec/spec-bootstrap.coffee @@ -5,6 +5,8 @@ nakedLoad 'jasmine-focused' $ = require 'jquery' +document.title = "Spec Suite" + $('head').append $$ -> @link rel: "stylesheet", type: "text/css", href: "static/jasmine.css" diff --git a/src/atom/editor.coffee b/src/atom/editor.coffee index d577041cb..64b2d86b3 100644 --- a/src/atom/editor.coffee +++ b/src/atom/editor.coffee @@ -166,6 +166,7 @@ class Editor extends View @screenLineCount() - 1 setBuffer: (@buffer) -> + document.title = @buffer.path @renderer = new Renderer(@buffer) @undoManager = new UndoManager(@buffer) @renderLines() @@ -245,6 +246,7 @@ class Editor extends View if not @buffer.path path = $native.saveDialog() return if not path + document.title = path @buffer.path = path @buffer.save()