From 370c1322c4cf426ea35c63196b4f3ff6e82ff304 Mon Sep 17 00:00:00 2001 From: Nathan Kinsinger Date: Tue, 1 Dec 2009 22:14:13 -0700 Subject: [PATCH] Add a space before the file name. --- html/views/commit/commit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/views/commit/commit.js b/html/views/commit/commit.js index cdec998..dfa9d34 100644 --- a/html/views/commit/commit.js +++ b/html/views/commit/commit.js @@ -57,7 +57,7 @@ var showFileChanges = function(file, cached) { if (file.status == 0) // New file? return showNewFile(file); - setTitle((cached ? "Staged": "Unstaged") + " changes for" + file.path); + setTitle((cached ? "Staged": "Unstaged") + " changes for " + file.path); displayContext(); var changes = Index.diffForFile_staged_contextLines_(file, cached, contextLines);