Browse Source

Show theming icons on external storage folders

Signed-off-by: Julius Haertl <jus@bitgrid.net>
tags/v11.0.0
Julius Haertl 7 years ago
parent
commit
b12db1b494
No account linked to committer's email address
1 changed files with 5 additions and 1 deletions
  1. 5
    1
      apps/files_external/js/statusmanager.js

+ 5
- 1
apps/files_external/js/statusmanager.js View File

@@ -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 $) {

Loading…
Cancel
Save