summaryrefslogtreecommitdiffstats
path: root/files
diff options
context:
space:
mode:
authorTom Needham <needham.thomas@gmail.com>2011-10-07 17:10:50 +0100
committerTom Needham <needham.thomas@gmail.com>2011-10-07 17:10:50 +0100
commit538abb99f1ee5d2a3b32ba4de134ac1de463a3b9 (patch)
tree3d6837350b442f438973e32348937ead5506af13 /files
parent66db81309ba030e7e5f36dbdffec90e7fd32322e (diff)
parent1f562a2e83f106a637e402afae1697cf2936295a (diff)
downloadnextcloud-server-538abb99f1ee5d2a3b32ba4de134ac1de463a3b9.tar.gz
nextcloud-server-538abb99f1ee5d2a3b32ba4de134ac1de463a3b9.zip
Merge branch 'master' of gitorious.org:owncloud/owncloud into ace-editor
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('.'));