aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Gapczynski <GapczynskiM@gmail.com>2011-10-22 02:11:32 -0400
committerMichael Gapczynski <GapczynskiM@gmail.com>2011-10-22 02:11:32 -0400
commitaa087f8661462fe97a1d67ef1f66b50b98f186be (patch)
tree1df68201473792896e7bc20f8bef6f44d8f1f325
parent50bf7a98c2d34e919144885db0b56ffed4e8e9c3 (diff)
downloadnextcloud-server-aa087f8661462fe97a1d67ef1f66b50b98f186be.tar.gz
nextcloud-server-aa087f8661462fe97a1d67ef1f66b50b98f186be.zip
Change javascript new folder from old icon to new
-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 3e85a35f6ef..863a3385d15 100644
--- a/files/js/filelist.js
+++ b/files/js/filelist.js
@@ -38,7 +38,7 @@ FileList={
},
addDir:function(name,size,lastModified){
var html='<tr data-file="'+name+'" data-type="dir" data-size="'+size+'">';
- html+='<td class="filename" style="background-image:url('+OC.imagePath('core', 'places/folder')+')"><input type="checkbox" /><a class="name" href="index.php?dir='+$('#dir').val()+'/'+name+'">'+name+'</a></td>';
+ html+='<td class="filename" style="background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')"><input type="checkbox" /><a class="name" href="index.php?dir='+$('#dir').val()+'/'+name+'">'+name+'</a></td>';
if(size!='Pending'){
simpleSize=simpleFileSize(size);
}else{