diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-05-17 16:18:40 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-05-17 16:18:40 +0200 |
commit | c3779555aa38940cb16790407c71bc852b9bd742 (patch) | |
tree | 6dd60cbad82d26164ae3c1167252f7828c85a022 /core/js | |
parent | ba9849a1aa158f1d5ab371db88d76e492bf476ec (diff) | |
download | nextcloud-server-c3779555aa38940cb16790407c71bc852b9bd742.tar.gz nextcloud-server-c3779555aa38940cb16790407c71bc852b9bd742.zip |
Dialogs: Home folder icon instead of '/'.
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/oc-dialogs.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index 674df056354..e05b3b0207a 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -314,10 +314,10 @@ var OCdialogs = { })); }); } - this.$dirTree.prepend($template.octemplate({ + $template.octemplate({ dir: '', - name: '/' - })); + name: ' ' // Ugly but works ;) + }, {escapeFunction: null}).addClass('home svg').prependTo(this.$dirTree); }, /** * handle selection made in the tree list |