| | |
| | | |
| | | // set eventhandlers to table row (only left-button-clicks in mouseup) |
| | | $(row).mousedown(function(e) { return self.drag_row(e, this.uid); }) |
| | | .mouseup(function(e) { if (e.which == 1) return self.click_row(e, this.uid); }); |
| | | .mouseup(function(e) { |
| | | if (e.which == 1 && !self.drag_active) |
| | | return self.click_row(e, this.uid); |
| | | else |
| | | return true; |
| | | }); |
| | | |
| | | if (bw.touch && row.addEventListener) { |
| | | row.addEventListener('touchstart', function(e) { |
| | |
| | | $(window).resize(function() { me.resize(); }); |
| | | $(window).scroll(function() { |
| | | var w = $(window); |
| | | me.fixed_header.css('marginLeft', (-w.scrollLeft()) + 'px'); |
| | | if (!bw.webkit) |
| | | me.fixed_header.css('marginTop', (-w.scrollTop()) + 'px'); |
| | | me.fixed_header.css({ |
| | | marginLeft: -w.scrollLeft() + 'px', |
| | | marginTop: -w.scrollTop() + 'px' |
| | | }); |
| | | }); |
| | | } |
| | | else { |