summaryrefslogtreecommitdiffstats
path: root/apps/files/js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2012-12-13 19:44:55 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2012-12-13 19:44:55 +0100
commite0ada2c24f3db0e93239f45bcbb7a8bb6d831018 (patch)
tree09c9d60d4e0a6546ba651ce95e14ea354d65ea76 /apps/files/js
parent0bc2dc24cdcb6ed9480fc7b1be57823d2641d905 (diff)
downloadnextcloud-server-e0ada2c24f3db0e93239f45bcbb7a8bb6d831018.tar.gz
nextcloud-server-e0ada2c24f3db0e93239f45bcbb7a8bb6d831018.zip
bring back fixed multiselect bar so it’s visible when scrolled down, fix #746
Diffstat (limited to 'apps/files/js')
-rw-r--r--apps/files/js/files.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js
index ece0b29ae16..feffa10c9f6 100644
--- a/apps/files/js/files.js
+++ b/apps/files/js/files.js
@@ -774,9 +774,8 @@ function procesSelection(){
$('#headerName>span.name').text(t('files','Name'));
$('#headerSize').text(t('files','Size'));
$('#modified').text(t('files','Modified'));
- $('th').removeClass('multiselect');
+ $('table').removeClass('multiselect');
$('.selectedActions').hide();
- $('thead').removeClass('fixed');
$('#headerName').css('width','auto');
$('#headerSize').css('width','auto');
$('#headerDate').css('width','auto');
@@ -817,7 +816,7 @@ function procesSelection(){
}
$('#headerName>span.name').text(selection);
$('#modified').text('');
- $('th').addClass('multiselect');
+ $('table').addClass('multiselect');
}
}