summaryrefslogtreecommitdiffstats
path: root/files/js
diff options
context:
space:
mode:
authorScott Barnett <scott.n.barnett@gmail.com>2011-09-27 06:48:05 +1000
committerScott Barnett <scott.n.barnett@gmail.com>2011-09-27 06:48:05 +1000
commit83ccbbe49f1e44da8d3abdfa7668af527c60c530 (patch)
treef4c205b0d0b9c77631a4ea3953d9236f1a468212 /files/js
parent861ef363a5fa04d8eea71689aeba8117958252dd (diff)
downloadnextcloud-server-83ccbbe49f1e44da8d3abdfa7668af527c60c530.tar.gz
nextcloud-server-83ccbbe49f1e44da8d3abdfa7668af527c60c530.zip
Fixed table gap from appearing.
Diffstat (limited to 'files/js')
-rw-r--r--files/js/files.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/files/js/files.js b/files/js/files.js
index 8289d418e69..9342642b4ff 100644
--- a/files/js/files.js
+++ b/files/js/files.js
@@ -385,11 +385,9 @@ function procesSelection(){
$('table').css('padding-top','0');
}else{
var width={name:$('#headerName').css('width'),size:$('#headerSize').css('width'),date:$('#headerDate').css('width')};
- $('thead').addClass('fixed');
$('#headerName').css('width',width.name);
$('#headerSize').css('width',width.size);
$('#headerDate').css('width',width.date);
- $('table').css('padding-top','2.1em');
$('.selectedActions').show();
var totalSize=0;
for(var i=0;i<selectedFiles.length;i++){