Add a space before the file name.

This commit is contained in:
Nathan Kinsinger
2009-12-01 22:14:13 -07:00
parent 76cd64c92b
commit 370c1322c4
+1 -1
View File
@@ -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);