Fixed: File browser ordering and volume name

This commit is contained in:
Mark McDowall
2014-12-20 13:24:29 -08:00
parent d3a35108df
commit 6878804705
4 changed files with 25 additions and 5 deletions

View File

@@ -24,11 +24,11 @@ define(
}
else if (type === 'folder') {
icon = 'icon-folder-close';
icon = 'icon-folder-close-alt';
}
else if (type === 'file') {
icon = 'icon-file';
icon = 'icon-file-alt';
}
this.$el.html('<i class="{0}"></i>'.format(icon));