summaryrefslogtreecommitdiffstats
path: root/files/js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-11 18:59:01 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-11 19:00:32 +0200
commit99790d68058b56e4a1faa0bba401287e5aa9eab1 (patch)
tree644f70c614bb64c0683879b2309605b39072df15 /files/js
parentef5e253bf54fb3ec9f12d4d208fee18db05b16fe (diff)
downloadnextcloud-server-99790d68058b56e4a1faa0bba401287e5aa9eab1.tar.gz
nextcloud-server-99790d68058b56e4a1faa0bba401287e5aa9eab1.zip
lots of image changes, use svg EVERYWHERE POSSIBLE
Diffstat (limited to 'files/js')
-rw-r--r--files/js/filelist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/js/filelist.js b/files/js/filelist.js
index 4a34385fd0b..50a995bf254 100644
--- a/files/js/filelist.js
+++ b/files/js/filelist.js
@@ -3,7 +3,7 @@ FileList={
$('#fileList').empty().html(fileListHtml);
},
addFile:function(name,size,lastModified,loading){
- var img=(loading)?'img/loading.gif':'img/file.png';
+ var img=(loading)?OC.imagePath('core', 'loading.gif'):OC.imagePath('core', 'filetypes/file.png');
var html='<tr data-file="'+name+'" data-type="file" data-size="'+size+'">';
if(name.indexOf('.')!=-1){
var basename=name.substr(0,name.indexOf('.'));