diff options
author | Julius Haertl <jus@bitgrid.net> | 2016-07-16 08:56:40 +0200 |
---|---|---|
committer | Julius Haertl <jus@bitgrid.net> | 2016-07-16 09:18:34 +0200 |
commit | 48ac845266fb4b4d9b3266ee58e622ac5965d0d3 (patch) | |
tree | b6e6def939792bfe9b2a875476d28f90b199a29b /apps/theming/js | |
parent | 3f47138d2791d64817644c755e6ab763d26ebc7b (diff) | |
download | nextcloud-server-48ac845266fb4b4d9b3266ee58e622ac5965d0d3.tar.gz nextcloud-server-48ac845266fb4b4d9b3266ee58e622ac5965d0d3.zip |
Theming: Fix image paths for caret icon
Diffstat (limited to 'apps/theming/js')
-rw-r--r-- | apps/theming/js/settings-admin.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/js/settings-admin.js b/apps/theming/js/settings-admin.js index ca915bc9ffe..85e781411ed 100644 --- a/apps/theming/js/settings-admin.js +++ b/apps/theming/js/settings-admin.js @@ -67,7 +67,7 @@ function preview(setting, value) { headerAppName.style.color = textColor; $(headerClass).find('.icon-caret').each(function() { - $(this).css('background-image','url(/core/img/actions/'+icon+'.svg)'); + $(this).css('background-image', "url('" + OC.getRootPath() + '/core/img/actions/' + icon + ".svg')"); }); } if (setting === 'logoMime') { |