summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-08-27 11:18:59 +0200
committerVincent Petry <pvince81@owncloud.com>2013-09-13 19:59:15 +0200
commitef955bae566be054276ec5b2dd96fdf1c23bd1c2 (patch)
tree5e00c35c5b8ddab6b8d95ff5fc057a3347a2409b /apps
parente6f21927d60ee1061652f8c34247afa94933c326 (diff)
downloadnextcloud-server-ef955bae566be054276ec5b2dd96fdf1c23bd1c2.tar.gz
nextcloud-server-ef955bae566be054276ec5b2dd96fdf1c23bd1c2.zip
calling replaceSVG() to display breadcrumb images correctly on IE8
Diffstat (limited to 'apps')
-rw-r--r--apps/files/js/filelist.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 278b2c4cbcb..21f713b4a80 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -220,7 +220,13 @@ var FileList={
$controls.prepend(result.data.breadcrumb);
// TODO: might need refactor breadcrumb code into a new file
//resizeBreadcrumbs(true);
+
+ // in case svg is not supported by the browser we need to execute the fallback mechanism
+ if(!SVGSupport()) {
+ replaceSVG();
+ }
}
+
FileList.update(result.data.files);
},
remove:function(name){