diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-07-10 08:47:10 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-07-10 08:47:10 +0200 |
commit | 8efdd9caf7e7c76c76a5335362d9cc4a96c32ae4 (patch) | |
tree | dbe3cff17b7200f88a8ff039e8cadada38ef4a05 /program/js | |
parent | 2c03b71d28ef0d579f2961e7c9c56f6756b0ea4b (diff) |
Enable fixed message list header in classic skin
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/list.js b/program/js/list.js index e8f72107c..f4bc42566 100644 --- a/program/js/list.js +++ b/program/js/list.js @@ -181,7 +181,7 @@ init_fixed_header: function() if (!this.fixed_header) { this.fixed_header = $('<table>') - .attr('class', this.list.className) + .attr('class', this.list.className + ' fixedcopy') .css({ position:'fixed' }) .append(clone) .append('<tbody></tbody>'); |