From fbbe59714e8276f1904c9cb3b797fe3057dbfd3a Mon Sep 17 00:00:00 2001 From: Jon Rohan Date: Mon, 24 Dec 2012 17:15:50 -0800 Subject: [PATCH] Having the trailing / in the directory treeview is cruft I wanted to remove the trailing / in the tree view. However, I have no idea if this breaks other stuff? @nathansobo @probablycorey --- src/app/directory.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/directory.coffee b/src/app/directory.coffee index 45e74cad5..79eefe334 100644 --- a/src/app/directory.coffee +++ b/src/app/directory.coffee @@ -10,7 +10,7 @@ class Directory constructor: (@path) -> getBaseName: -> - fs.base(@path) + '/' + fs.base(@path) getPath: -> @path