Show theming icons on external storage folders

Signed-off-by: Julius Haertl <jus@bitgrid.net>
这个提交包含在:
Julius Haertl 2016-12-09 12:50:14 +01:00
父节点 60e4299bcb
当前提交 b12db1b494
找不到此签名对应的密钥
GPG 密钥 ID: 4C614C6ED2CDE6DF

查看文件

@ -539,7 +539,11 @@ OCA.External.StatusManager.Utils = {
* of the tr matching the folder name
*/
getIconRoute: function (tr) {
var icon = OC.imagePath('core', 'filetypes/folder-external');
if (OCA.Theming) {
var icon = OC.generateUrl('/apps/theming/img/core/filetypes/folder-external.svg?v=' + OCA.Theming.cacheBuster);
} else {
var icon = OC.imagePath('core', 'filetypes/folder-external');
}
var backend = null;
if (tr instanceof $) {