summaryrefslogtreecommitdiff
path: root/program
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2015-01-10 17:39:51 +0100
committerAleksander Machniak <alec@alec.pl>2015-01-10 17:39:51 +0100
commit091f5e2978dc3269180014e1f815fa2d55972511 (patch)
tree90c29ddcdcc2a14e0c04d6613dc22f298d584b1b /program
parentb6b2858b0172e54c1b497fae5019a868f8be5934 (diff)
Fix css selectors in resize() for IE (#1490213)
Diffstat (limited to 'program')
-rw-r--r--program/js/list.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/program/js/list.js b/program/js/list.js
index dbc14d6b8..bbf6e1e01 100644
--- a/program/js/list.js
+++ b/program/js/list.js
@@ -219,7 +219,7 @@ init_header: function()
if (this.column_fixed == r)
continue;
col = this.thead.rows[0].cells[r];
- col.onmousedown = function(e){ return p.drag_column(e, this); };
+ col.onmousedown = function(e) { return p.drag_column(e, this); };
this.colcount++;
}
}
@@ -240,8 +240,8 @@ init_fixed_header: function()
$(this.list).before(this.fixed_header);
var me = this;
- $(window).resize(function(){ me.resize() });
- $(window).scroll(function(){
+ $(window).resize(function() { me.resize(); });
+ $(window).scroll(function() {
var w = $(window);
me.fixed_header.css('marginLeft', (-w.scrollLeft()) + 'px');
if (!bw.webkit)
@@ -270,14 +270,14 @@ resize: function()
var column_widths = [];
// get column widths from original thead
- $(this.tbody).parent().find('thead tr td').each(function(index) {
+ $(this.tbody).parent().find('thead th,thead td').each(function(index) {
column_widths[index] = $(this).width();
});
// apply fixed widths to fixed table header
$(this.thead).parent().width($(this.tbody).parent().width());
- $(this.thead).find('tr td').each(function(index) {
- $(this).css('width', column_widths[index]);
+ $(this.thead).find('th,td').each(function(index) {
+ $(this).width(column_widths[index]);
});
$(window).scroll();