aboutsummaryrefslogtreecommitdiffstats
path: root/files/js
diff options
context:
space:
mode:
authorMichiel@unhosted <michiel@unhosted.org>2011-10-09 17:13:34 +0200
committerMichiel@unhosted <michiel@unhosted.org>2011-10-09 17:13:34 +0200
commit6e62911a4ebeb16203cf88cd9b62da37b519ed62 (patch)
tree404f3c882c2c979c7433ab067bc793ae349fac0f /files/js
parentf4fb6356cd5d9143f59ad41425d74fb35bbe68fd (diff)
parent203f7a3a870964310060d82bdd61d14eb1613791 (diff)
downloadnextcloud-server-6e62911a4ebeb16203cf88cd9b62da37b519ed62.tar.gz
nextcloud-server-6e62911a4ebeb16203cf88cd9b62da37b519ed62.zip
Merge branch 'master' of gitorious.org:owncloud/owncloud
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 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('.'));