diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-10-07 18:09:49 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-10-07 18:09:49 +0200 |
commit | 1f562a2e83f106a637e402afae1697cf2936295a (patch) | |
tree | 8b328f2dc0ff3c7dd992602d5290a8fea7537936 /files | |
parent | 6449a45695221aeba5f8510a707a8fb14b1d7bc3 (diff) | |
download | nextcloud-server-1f562a2e83f106a637e402afae1697cf2936295a.tar.gz nextcloud-server-1f562a2e83f106a637e402afae1697cf2936295a.zip |
fixes for the mimetype icons
Diffstat (limited to 'files')
-rw-r--r-- | files/js/filelist.js | 2 |
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('.')); |