aboutsummaryrefslogtreecommitdiffstats
path: root/files
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-10-07 18:09:49 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-10-07 18:09:49 +0200
commit1f562a2e83f106a637e402afae1697cf2936295a (patch)
tree8b328f2dc0ff3c7dd992602d5290a8fea7537936 /files
parent6449a45695221aeba5f8510a707a8fb14b1d7bc3 (diff)
downloadnextcloud-server-1f562a2e83f106a637e402afae1697cf2936295a.tar.gz
nextcloud-server-1f562a2e83f106a637e402afae1697cf2936295a.zip
fixes for the mimetype icons
Diffstat (limited to 'files')
-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 66092220795..84762bb561d 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)?OC.imagePath('core', 'loading.gif'):OC.imagePath('core', 'filetypes/file');
+ 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.lastIndexOf('.'));