summaryrefslogtreecommitdiffstats
path: root/files/js
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-07-29 02:47:02 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-07-29 02:47:25 +0200
commit2d43f6e307e407635483ba503c404d5a2d24522d (patch)
treef5c21c87fa547c7615c72de52e559e8a20009558 /files/js
parent468319fe049102bc62c59e81a49cbf5e62e0e0ad (diff)
downloadnextcloud-server-2d43f6e307e407635483ba503c404d5a2d24522d.tar.gz
nextcloud-server-2d43f6e307e407635483ba503c404d5a2d24522d.zip
make foldernames also bold after renaming
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 0695b482534..260ca00b977 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"><input type="checkbox" /><a class="name" style="background-image:url(img/folder.png)" href="index.php?dir='+$('#dir').val()+'/'+name+'"><strong>'+name+'</strong></a></td>';
+ html+='<td class="filename"><input type="checkbox" /><a class="name" style="background-image:url(img/folder.png)" href="index.php?dir='+$('#dir').val()+'/'+name+'">'+name+'</a></td>';
if(size!='Pending'){
simpleSize=simpleFileSize(size);
}else{