mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Merge pull request #433 from marcinrosinski/master
Update jquery.tablesorter.widgets.js
This commit is contained in:
commit
0e3d8eeff6
@ -1,4 +1,4 @@
|
|||||||
/*! tableSorter 2.8+ widgets - updated 11/22/2013 (v2.14.1)
|
/*! tableSorter 2.8+ widgets - updated 11/24/2013 (v2.14.2)
|
||||||
*
|
*
|
||||||
* Column Styles
|
* Column Styles
|
||||||
* Column Filters
|
* Column Filters
|
||||||
@ -1083,6 +1083,7 @@ ts.addWidget({
|
|||||||
spacing = 0,
|
spacing = 0,
|
||||||
updatingStickyFilters = false,
|
updatingStickyFilters = false,
|
||||||
nonwkie = $table.css('border-collapse') !== 'collapse' && !/(webkit|msie)/i.test(navigator.userAgent),
|
nonwkie = $table.css('border-collapse') !== 'collapse' && !/(webkit|msie)/i.test(navigator.userAgent),
|
||||||
|
isWebkit = !/(webkit|msie)/i.test(navigator.userAgent),
|
||||||
resizeHeader = function() {
|
resizeHeader = function() {
|
||||||
stickyOffset = $stickyOffset.length ? $stickyOffset.height() || 0 : parseInt(wo.stickyHeaders_offset, 10) || 0;
|
stickyOffset = $stickyOffset.length ? $stickyOffset.height() || 0 : parseInt(wo.stickyHeaders_offset, 10) || 0;
|
||||||
spacing = 0;
|
spacing = 0;
|
||||||
@ -1094,7 +1095,7 @@ ts.addWidget({
|
|||||||
spacing = parseInt($header.eq(0).css('border-left-width'), 10) * 2;
|
spacing = parseInt($header.eq(0).css('border-left-width'), 10) * 2;
|
||||||
}
|
}
|
||||||
$stickyTable.css({
|
$stickyTable.css({
|
||||||
left : $thead.offset().left - $win.scrollLeft() - spacing,
|
left : $thead.offset().left - $win.scrollLeft() - spacing - (isWebkit ? 1 : 0),
|
||||||
width: $table.width()
|
width: $table.width()
|
||||||
});
|
});
|
||||||
$stickyCells.filter(':visible').each(function(i) {
|
$stickyCells.filter(':visible').each(function(i) {
|
||||||
@ -1177,7 +1178,7 @@ ts.addWidget({
|
|||||||
.addClass(prefix + isVisible)
|
.addClass(prefix + isVisible)
|
||||||
.css({
|
.css({
|
||||||
// adjust when scrolling horizontally - fixes issue #143
|
// adjust when scrolling horizontally - fixes issue #143
|
||||||
left : $thead.offset().left - $win.scrollLeft() - spacing,
|
left : $thead.offset().left - $win.scrollLeft() - spacing - (isWebkit ? 1 : 0),
|
||||||
visibility : isVisible
|
visibility : isVisible
|
||||||
});
|
});
|
||||||
if (isVisible !== laststate || event.type === 'resize') {
|
if (isVisible !== laststate || event.type === 'resize') {
|
||||||
|
Loading…
Reference in New Issue
Block a user