2014-04-10 15:29:04 +00:00
/*! tableSorter 2.15+ widgets - updated 4/10/2014 (v2.15.14) */
2014-02-20 23:25:49 +00:00
; ( function ( l ) {
var c = l . tablesorter = l . tablesorter || { } ;
c . themes = { bootstrap : { table : "table table-bordered table-striped" , caption : "caption" , header : "bootstrap-header" , footerRow : "" , footerCells : "" , icons : "" , sortNone : "bootstrap-icon-unsorted" , sortAsc : "icon-chevron-up glyphicon glyphicon-chevron-up" , sortDesc : "icon-chevron-down glyphicon glyphicon-chevron-down" , active : "" , hover : "" , filterRow : "" , even : "" , odd : "" } , jui : { table : "ui-widget ui-widget-content ui-corner-all" , caption : "ui-widget-content ui-corner-all" , header : "ui-widget-header ui-corner-all ui-state-default" , footerRow : "" , footerCells : "" , icons : "ui-icon" , sortNone : "ui-icon-carat-2-n-s" , sortAsc : "ui-icon-carat-1-n" , sortDesc : "ui-icon-carat-1-s" , active : "ui-state-active" , hover : "ui-state-hover" , filterRow : "" , even : "ui-widget-content" , odd : "ui-state-default" } } ; l . extend ( c . css , { filterRow : "tablesorter-filter-row" , filter : "tablesorter-filter" , wrapper : "tablesorter-wrapper" , resizer : "tablesorter-resizer" , grip : "tablesorter-resizer-grip" , sticky : "tablesorter-stickyHeader" , stickyVis : "tablesorter-sticky-visible" } ) ;
2014-04-10 15:29:04 +00:00
c . storage = function ( b , a , e , c ) { b = l ( b ) [ 0 ] ; var d , g , h = ! 1 ; d = { } ; g = b . config ; var k = l ( b ) ; b = c && c . id || k . attr ( c && c . group || "data-table-group" ) || b . id || l ( ".tablesorter" ) . index ( k ) ; c = c && c . url || k . attr ( c && c . page || "data-table-page" ) || g && g . fixedUrl || window . location . pathname ; if ( "localStorage" in window ) try { window . localStorage . setItem ( "_tmptest" , "temp" ) , h = ! 0 , window . localStorage . removeItem ( "_tmptest" ) } catch ( q ) { } l . parseJSON && ( h ? d = l . parseJSON ( localStorage [ a ] || "{}" ) : ( g = document . cookie . split ( /[;\s|=]/ ) , d = l . inArray ( a , g ) + 1 , d = 0 !== d ? l . parseJSON ( g [ d ] || "{}" ) : { } ) ) ; if ( ( e || "" === e ) && window . JSON && JSON . hasOwnProperty ( "stringify" ) ) d [ c ] || ( d [ c ] = { } ) , d [ c ] [ b ] = e , h ? localStorage [ a ] = JSON . stringify ( d ) : ( e = new Date , e . setTime ( e . getTime ( ) + 31536E6 ) , document . cookie = a + "=" + JSON . stringify ( d ) . replace ( /\"/g , '"' ) + "; expires=" + e . toGMTString ( ) + "; path=/" ) ; else return d && d [ c ] ? d [ c ] [ b ] : "" } ;
2014-03-31 11:13:35 +00:00
c . addHeaderResizeEvent = function ( b , a , c ) { var f ; c = l . extend ( { } , { timer : 250 } , c ) ; var d = b . config , g = d . widgetOptions , h = function ( a ) { g . resize _flag = ! 0 ; f = [ ] ; d . $headers . each ( function ( ) { var a = l ( this ) , b = a . data ( "savedSizes" ) || [ 0 , 0 ] , c = this . offsetWidth , e = this . offsetHeight ; if ( c !== b [ 0 ] || e !== b [ 1 ] ) a . data ( "savedSizes" , [ c , e ] ) , f . push ( this ) } ) ; f . length && ! 1 !== a && d . $table . trigger ( "resize" , [ f ] ) ; g . resize _flag = ! 1 } ; h ( ! 1 ) ; clearInterval ( g . resize _timer ) ; if ( a ) return g . resize _flag = ! 1 ; g . resize _timer = setInterval ( function ( ) { g . resize _flag || h ( ) } , c . timer ) } ;
c . addWidget ( { id : "uitheme" , priority : 10 , format : function ( b , a , e ) { var f , d , g , h , k = c . themes , q = a . $table , n = a . $headers , p = a . theme || "jui" , m = k [ p ] || k . jui , v = m . sortNone + " " + m . sortDesc + " " + m . sortAsc ; a . debug && ( f = new Date ) ; q . hasClass ( "tablesorter-" + p ) && a . theme !== p && b . hasInitialized || ( "" !== m . even && ( e . zebra [ 0 ] += " " + m . even ) , "" !== m . odd && ( e . zebra [ 1 ] += " " + m . odd ) , q . find ( "caption" ) . addClass ( m . caption ) , b = q . removeClass ( "" === a . theme ? "" : "tablesorter-" + a . theme ) . addClass ( "tablesorter-" + p + " " + m . table ) . find ( "tfoot" ) , b . length && b . find ( "tr" ) . addClass ( m . footerRow ) . children ( "th, td" ) . addClass ( m . footerCells ) , n . addClass ( m . header ) . not ( ".sorter-false" ) . bind ( "mouseenter.tsuitheme mouseleave.tsuitheme" , function ( a ) { l ( this ) [ "mouseenter" === a . type ? "addClass" : "removeClass" ] ( m . hover ) } ) , n . find ( "." + c . css . wrapper ) . length || n . wrapInner ( '<div class="' + c . css . wrapper + '" style="position:relative;height:100%;width:100%"></div>' ) , a . cssIcon && n . find ( "." + c . css . icon ) . addClass ( m . icons ) , q . hasClass ( "hasFilters" ) && n . find ( "." + c . css . filterRow ) . addClass ( m . filterRow ) ) ; l . each ( n , function ( ) { g = l ( this ) ; h = c . css . icon ? g . find ( "." + c . css . icon ) : g ; this . sortDisabled ? ( g . removeClass ( v ) , h . removeClass ( v + " " + m . icons ) ) : ( d = g . hasClass ( c . css . sortAsc ) ? m . sortAsc : g . hasClass ( c . css . sortDesc ) ? m . sortDesc : g . hasClass ( c . css . header ) ? m . sortNone : "" , g [ d === m . sortNone ? "removeClass" : "addClass" ] ( m . active ) , h . removeClass ( v ) . addClass ( d ) ) } ) ; a . debug && c . benchmark ( "Applying " + p + " theme" , f ) } , remove : function ( b , a , e ) { b = a . $table ; a = a . theme || "jui" ; e = c . themes [ a ] || c . themes . jui ; var f = b . children ( "thead" ) . children ( ) , d = e . sortNone + " " + e . sortDesc + " " + e . sortAsc ; b . removeClass ( "tablesorter-" + a + " " + e . table ) . find ( c . css . header ) . removeClass ( e . header ) ; f . unbind ( "mouseenter.tsuitheme mouseleave.tsuitheme" ) . removeClass ( e . hover + " " + d + " " + e . active ) . find ( "." + c . css . filterRow ) . removeClass ( e . filterRow ) ; f . find ( "." + c . css . icon ) . removeClass ( e . icons ) } } ) ;
c . addWidget ( { id : "columns" , priority : 30 , options : { columns : [ "primary" , "secondary" , "tertiary" ] } , format : function ( b , a , e ) { var f , d , g , h , k , q , n , p , m = a . $table , v = a . $tbodies , s = a . sortList , u = s . length , w = e && e . columns || [ "primary" , "secondary" , "tertiary" ] , x = w . length - 1 ; n = w . join ( " " ) ; a . debug && ( f = new Date ) ; for ( g = 0 ; g < v . length ; g ++ ) d = c . processTbody ( b , v . eq ( g ) , ! 0 ) , h = d . children ( "tr" ) , h . each ( function ( ) { k = l ( this ) ; if ( "none" !== this . style . display && ( q = k . children ( ) . removeClass ( n ) , s && s [ 0 ] && ( q . eq ( s [ 0 ] [ 0 ] ) . addClass ( w [ 0 ] ) , 1 < u ) ) ) for ( p = 1 ; p < u ; p ++ ) q . eq ( s [ p ] [ 0 ] ) . addClass ( w [ p ] || w [ x ] ) } ) , c . processTbody ( b , d , ! 1 ) ; b = ! 1 !== e . columns _thead ? [ "thead tr" ] : [ ] ; ! 1 !== e . columns _tfoot && b . push ( "tfoot tr" ) ; if ( b . length && ( h = m . find ( b . join ( "," ) ) . children ( ) . removeClass ( n ) , u ) ) for ( p = 0 ; p < u ; p ++ ) h . filter ( '[data-column="' + s [ p ] [ 0 ] + '"]' ) . addClass ( w [ p ] || w [ x ] ) ; a . debug && c . benchmark ( "Applying Columns widget" , f ) } , remove : function ( b , a , e ) { var f = a . $tbodies , d = ( e . columns || [ "primary" , "secondary" , "tertiary" ] ) . join ( " " ) ; a . $headers . removeClass ( d ) ; a . $table . children ( "tfoot" ) . children ( "tr" ) . children ( "th, td" ) . removeClass ( d ) ; for ( a = 0 ; a < f . length ; a ++ ) e = c . processTbody ( b , f . eq ( a ) , ! 0 ) , e . children ( "tr" ) . each ( function ( ) { l ( this ) . children ( ) . removeClass ( d ) } ) , c . processTbody ( b , e , ! 1 ) } } ) ;
c . addWidget ( { id : "filter" , priority : 50 , options : { filter _childRows : ! 1 , filter _columnFilters : ! 0 , filter _cssFilter : "" , filter _external : "" , filter _filteredRow : "filtered" , filter _formatter : null , filter _functions : null , filter _hideEmpty : ! 0 , filter _hideFilters : ! 1 , filter _ignoreCase : ! 0 , filter _liveSearch : ! 0 , filter _onlyAvail : "filter-onlyAvail" , filter _reset : null , filter _saveFilters : ! 1 , filter _searchDelay : 300 , filter _startsWith : ! 1 , filter _useParsedData : ! 1 , filter _serversideFiltering : ! 1 , filter _defaultAttrib : "data-value" } , format : function ( b , a , e ) { a . $table . hasClass ( "hasFilters" ) || c . filter . init ( b , a , e ) } , remove : function ( b , a , e ) { var f , d = a . $tbodies ; a . $table . removeClass ( "hasFilters" ) . unbind ( "addRows updateCell update updateRows updateComplete appendCache filterReset filterEnd search " . split ( " " ) . join ( a . namespace + "filter " ) ) . find ( "." + c . css . filterRow ) . remove ( ) ; for ( a = 0 ; a < d . length ; a ++ ) f = c . processTbody ( b , d . eq ( a ) , ! 0 ) , f . children ( ) . removeClass ( e . filter _filteredRow ) . show ( ) , c . processTbody ( b , f , ! 1 ) ; e . filter _reset && l ( document ) . undelegate ( e . filter _reset , "click.tsfilter" ) } } ) ;
2014-04-03 15:22:19 +00:00
c . filter = { regex : { regex : /^\/((?:\\\/|[^\/])+)\/([mig]{0,3})?$/ , child : /tablesorter-childRow/ , filtered : /filtered/ , type : /undefined|number/ , exact : /(^[\"|\'|=]+)|([\"|\'|=]+$)/g , nondigit : /[^\w,. \-()]/g , operators : /[<>=]/g } , types : { regex : function ( b , a , e , f ) { if ( c . filter . regex . regex . test ( a ) ) { var d ; b = c . filter . regex . regex . exec ( a ) ; try { d = RegExp ( b [ 1 ] , b [ 2 ] ) . test ( f ) } catch ( g ) { d = ! 1 } return d } return null } , operators : function ( b , a , e , f , d , g , h , k , l ) { if ( /^[<>]=?/ . test ( a ) ) { var n , p ; n = h . config ; b = c . formatFloat ( a . replace ( c . filter . regex . operators , "" ) , h ) ; e = n . parsers [ g ] ; k = b ; if ( l [ g ] || "numeric" === e . type ) n = e . format ( "" + a . replace ( c . filter . regex . operators , "" ) , h , n . $headers . eq ( g ) , g ) , b = "number" !== typeof b || "" === n || isNaN ( n ) ? b : n ; n = ! l [ g ] && "numeric" !== e . type || isNaN ( b ) || ! d ? isNaN ( f ) ? c . formatFloat ( f . replace ( c . filter . regex . nondigit , "" ) , h ) : c . formatFloat ( f , h ) : d ; />/ . test ( a ) && ( p = />=/ . test ( a ) ? n >= b : n > b ) ; /</ . test ( a ) && ( p = /<=/ . test ( a ) ? n <= b : n < b ) ; p || "" !== k || ( p = ! 0 ) ; return p } return null } , exact : function ( b , a , e , f , d , g , h , k , q , n ) { return c . filter . regex . exact . test ( a ) ? ( b = a . replace ( c . filter . regex . exact , "" ) , n ? 0 <= l . inArray ( b , n ) : b == f ) : null } , notMatch : function ( b , a , c , f , d , g , h , k ) { return /^\!/ . test ( a ) ? ( a = a . replace ( "!" , "" ) , b = f . search ( l . trim ( a ) ) , "" === a ? ! 0 : ! ( k . filter _startsWith ? 0 === b : 0 <= b ) ) : null } , and : function ( b , a , c , f ) { if ( /\s+(AND|&&)\s+/g . test ( b ) ) { b = a . split ( /(?:\s+(?:and|&&)\s+)/g ) ; a = 0 <= f . search ( l . trim ( b [ 0 ] ) ) ; for ( c = b . length - 1 ; a && c ; ) a = a && 0 <= f . search ( l . trim ( b [ c ] ) ) , c -- ; return a } return null } , range : function ( b , a , e , f , d , g , h , k , l ) { if ( /\s+(-|to)\s+/ . test ( a ) ) { b = h . config ; var n = a . split ( /(?: - | to )/ ) ; e = c . formatFloat ( n [ 0 ] . replace ( c . filter . regex . nondigit , "" ) , h ) ; k = c . formatFloat ( n [ 1 ] . replace ( c . filter . regex . nondigit , "" ) , h ) ; if ( l [ g ] || "numeric" === b . parsers [ g ] . type ) a = b . parsers [ g ] . format ( "" + n [ 0 ] , h , b . $headers . eq ( g ) , g ) , e = "" === a || isNaN ( a ) ? e : a , a = b . parsers [ g ] . format ( "" + n [ 1 ] , h , b . $headers . eq ( g ) , g ) , k = "" === a || isNaN ( a ) ? k : a ; a = ! l [ g ] && "numeric" !== b . parsers [ g ] . type || isNaN ( e ) || isNaN ( k ) ? isNaN ( f ) ? c . formatFloat ( f . replace ( c . filter . regex . nondigit , "" ) , h ) : c . formatFloat ( f , h ) : d ; e > k && ( f = e , e = k , k = f ) ; return a >= e && a <= k || "" === e || "" === k } return null } , wild : function ( b , a , c , f , d , g , h , k , q , n ) { return /[\?|\*]/ . test ( a ) || /\s+OR\s+/i . test ( b ) ? ( b = h . config , a = a . replace ( /\s+OR\s+/gi , "|" ) , ! b . $headers . filter ( '[data-column="' + g + '"]:last' ) . hasClass ( "filter-match" ) && /\|/ . test ( a ) && ( a = l . isArray ( n ) ? "(" + a + ")" : "^(" + a + ")$" ) , RegExp ( a . replace ( /\?/g , "\\S{1}" ) . replace ( /\*/g , "\\S*" ) ) . test ( f ) ) : null } , fuzzy : function ( b , a , c , f ) { if ( /^~/ . test ( a ) ) { b = 0 ; c = f . length ; var d = a . slice ( 1 ) ; for ( a = 0 ; a < c ; a ++ ) f [ a ] === d [ b ] && ( b += 1 ) ; return b === d . length ? ! 0 : ! 1 } return null } } , init : function ( b , a , e ) { var f , d , g , h , k , q ; a . debug && ( q = new Date ) ; a . $table . addClass ( "hasFilters" ) ; c . filter . regex . child = RegExp ( a . cssChildRow ) ; c . filter . regex . filtered = RegExp ( e . filter _filteredRow ) ; ! 1 !== e . filter _columnFilters && a . $headers . filter ( ".filter-false" ) . length !== a . $headers . length && c . filter . buildRow ( b , a , e ) ; a . $table . bind ( "addRows updateCell update updateRows updateComplete appendCache filterReset filterEnd search " . split ( " " ) . join ( a . namespace + "filter " ) , function ( d , g ) { a . $table . find ( "." + c . css . filterRow ) . toggle ( ! ( e . filter _hideEmpty && l . isEmptyObject ( a . cache ) ) ) ; /(search|filter)/ . test ( d . type ) || ( d . stopPropagation ( ) , c . filter . buildDefault ( b , ! 0 ) ) ; "filterReset" === d . type ? c . filter . searching ( b , [ ] ) : "filterEnd" === d . type ? c . filter . buildDefault ( b , ! 0 ) : ( g = "search" === d . type ? g : "updateComplete" === d . type ? a . $table . data ( "lastSearch" ) : "" , /(update|add)/ . test ( d . type ) && "updateComplete" !== d . type && ( a . lastCombinedFilter = null ) , c . filter . searching ( b , g , ! 0 ) ) ; return ! 1 } ) ; e . filter _reset && l ( document ) . undelegate ( e . filter _reset , "click.tsfilter" ) . delegate ( e . filter _reset , "click.tsfilter" , function ( ) { a . $table . trigger ( "filterReset" ) } ) ; if ( e . filter _functions ) for ( h in e . filter _functions ) if ( e . filter _functions . hasOwnProperty ( h ) && "string" === typeof h ) if ( g = a . $headers . filter ( '[data-column="' + h + '"]:last' ) , f = "" , ! 0 === e . filter _functions [ h ] && ! g . hasClass ( "filter-false" ) ) c . filter . buildSelect ( b , h ) ; else if ( "string" === typeof h && ! g . hasClass ( "filter-false" ) ) { for ( d in e . filter _functions [ h ] ) "string" === typeof d && ( f += "" === f ? '<option value="">' + ( g . data ( "placeholder" ) || g . attr ( "data-placeholder" ) || "" ) + "</option>" : "" , f += ' < option val
2014-04-10 15:29:04 +00:00
c . getFilters = function ( b , a , e , f ) { var d , g = ! 1 , h = b ? l ( b ) [ 0 ] . config : "" , k = h ? h . widgetOptions : "" ; if ( ! 0 !== a && k && ! k . filter _columnFilters ) return l ( b ) . data ( "lastSearch" ) ; if ( h && ( h . $filters && ( d = h . $filters . find ( "." + c . css . filter ) ) , k . filter _$externalFilters && ( d = d && d . length ? d . add ( k . filter _$externalFilters ) : k . filter _$externalFilters ) , d && d . length ) ) for ( g = e || [ ] , b = 0 ; b < h . columns + 1 ; b ++ ) a = d . filter ( '[data-column="' + ( b === h . columns ? "all" : b ) + '"]' ) , a . length && ( a = a . sort ( function ( a , b ) { return l ( b ) . attr ( "data-lastSearchTime" ) - l ( a ) . attr ( "data-lastSearchTime" ) } ) , l . isArray ( e ) ? ( f ? a . slice ( 1 ) : a ) . val ( e [ b ] ) . trigger ( "change.tsfilter" ) : ( g [ b ] = a . val ( ) || "" , a . slice ( 1 ) . val ( g [ b ] ) ) , b === h . columns && a . length && ( k . filter _$anyMatch = a ) ) ; 0 === g . length && ( g = ! 1 ) ; return g } ;
c . setFilters = function ( b , a , e , f ) { var d = b ? l ( b ) [ 0 ] . config : "" ; b = c . getFilters ( b , ! 0 , a , f ) ; d && e && ( d . lastCombinedFilter = null , d . $table . trigger ( "search" , [ a , ! 1 ] ) . trigger ( "filterFomatterUpdate" ) ) ; return ! ! b } ;
2014-04-03 15:22:19 +00:00
c . addWidget ( { id : "stickyHeaders" , priority : 60 , options : { stickyHeaders : "" , stickyHeaders _attachTo : null , stickyHeaders _offset : 0 , stickyHeaders _cloneId : "-sticky" , stickyHeaders _addResizeEvent : ! 0 , stickyHeaders _includeCaption : ! 0 , stickyHeaders _zIndex : 2 } , format : function ( b , a , e ) { if ( ! ( a . $table . hasClass ( "hasStickyHeaders" ) || 0 <= l . inArray ( "filter" , a . widgets ) && ! a . $table . hasClass ( "hasFilters" ) ) ) { var f , d = a . $table , g = l ( e . stickyHeaders _attachTo ) , h = d . children ( "thead:first" ) , k = g . length ? g : l ( window ) , q = h . children ( "tr" ) . not ( ".sticky-false" ) . children ( ) , n = "." + c . css . headerIn , p = d . find ( "tfoot" ) , m = isNaN ( e . stickyHeaders _offset ) ? l ( e . stickyHeaders _offset ) : "" , v = g . length ? 0 : m . length ? m . height ( ) || 0 : parseInt ( e . stickyHeaders _offset , 10 ) || 0 , s = e . $sticky = d . clone ( ) . addClass ( "containsStickyHeaders" ) . css ( { position : g . length ? "absolute" : "fixed" , margin : 0 , top : v , left : 0 , visibility : "hidden" , zIndex : e . stickyHeaders _zIndex ? e . stickyHeaders _zIndex : 2 } ) , u = s . children ( "thead:first" ) . addClass ( c . css . sticky + " " + e . stickyHeaders ) , w , x = "" , A = 0 , z = "collapse" !== d . css ( "border-collapse" ) && ! /(webkit|msie)/i . test ( navigator . userAgent ) , y = function ( ) { v = m . length ? m . height ( ) || 0 : parseInt ( e . stickyHeaders _offset , 10 ) || 0 ; A = 0 ; z && ( A = 2 * parseInt ( q . eq ( 0 ) . css ( "border-left-width" ) , 10 ) ) ; s . css ( { left : g . length ? ( parseInt ( g . css ( "padding-left" ) , 10 ) || 0 ) + parseInt ( a . $table . css ( "padding-left" ) , 10 ) + parseInt ( a . $table . css ( "margin-left" ) , 10 ) + parseInt ( d . css ( "border-left-width" ) , 10 ) : h . offset ( ) . left - k . scrollLeft ( ) - A , width : d . width ( ) } ) ; w . filter ( ":visible" ) . each ( function ( b ) { b = q . filter ( ":visible" ) . eq ( b ) ; var c = z && l ( this ) . attr ( "data-column" ) === "" + parseInt ( a . columns / 2 , 10 ) ? 1 : 0 ; l ( this ) . css ( { width : b . width ( ) - A , height : b . height ( ) } ) . find ( n ) . width ( b . find ( n ) . width ( ) - c ) } ) } ; s . attr ( "id" ) && ( s [ 0 ] . id += e . stickyHeaders _cloneId ) ; s . find ( "thead:gt(0), tr.sticky-false, tbody, tfoot" ) . hide ( ) ; e . stickyHeaders _includeCaption ? s . find ( "caption" ) . css ( "margin-left" , "-1px" ) : s . find ( "caption" ) . remove ( ) ; w = u . children ( ) . children ( ) ; s . css ( { height : 0 , width : 0 , padding : 0 , margin : 0 , border : 0 } ) ; w . find ( "." + c . css . resizer ) . remove ( ) ; d . addClass ( "hasStickyHeaders" ) . bind ( "sortEnd.tsSticky" , function ( ) { q . filter ( ":visible" ) . each ( function ( b ) { f = w . filter ( ":visible" ) . eq ( b ) . attr ( "class" , l ( this ) . attr ( "class" ) ) . removeClass ( c . css . processing + " " + a . cssProcessing ) ; a . cssIcon && f . find ( "." + c . css . icon ) . attr ( "class" , l ( this ) . find ( "." + c . css . icon ) . attr ( "class" ) ) } ) } ) . bind ( "pagerComplete.tsSticky" , function ( ) { y ( ) } ) ; c . bindEvents ( b , u . children ( ) . children ( ".tablesorter-header" ) ) ; d . after ( s ) ; k . bind ( "scroll.tsSticky resize.tsSticky" , function ( a ) { if ( d . is ( ":visible" ) ) { var b = d . offset ( ) , c = e . stickyHeaders _includeCaption ? 0 : d . find ( "caption" ) . outerHeight ( ! 0 ) , c = ( g . length ? g . offset ( ) . top : k . scrollTop ( ) ) + v - c , f = d . height ( ) - ( s . height ( ) + ( p . height ( ) || 0 ) ) , b = c > b . top && c < b . top + f ? "visible" : "hidden" , c = { visibility : b } ; g . length ? c . top = g . scrollTop ( ) : c . left = h . offset ( ) . left - k . scrollLeft ( ) - A ; s . removeClass ( "tablesorter-sticky-visible tablesorter-sticky-hidden" ) . addClass ( "tablesorter-sticky-" + b ) . css ( c ) ; if ( b !== x || "resize" === a . type ) y ( ) , x = b } } ) ; e . stickyHeaders _addResizeEvent && c . addHeaderResizeEvent ( b ) ; d . hasClass ( "hasFilters" ) && ( d . bind ( "filterEnd" , function ( ) { var b = l ( document . activeElement ) . closest ( "td" ) , b = b . parent ( ) . children ( ) . index ( b ) ; s . hasClass ( c . css . stickyVis ) && ( window . scrollTo ( 0 , d . position ( ) . top ) , 0 <= b && a . $filters . eq ( b ) . find ( "a, select, input" ) . filter ( ":visible" ) . focus ( ) ) } ) , c . filter . bindSearch ( d , w . find ( "." + c . css . filter ) ) ) ; d . trigger ( "stickyHeadersInit" ) } } , remove : function ( b , a , e ) { a . $table . removeClass ( "hasStickyHeaders" ) . unbind ( "sortEnd.tsSticky pagerComplete.tsSticky" ) . find ( "." + c . css . sticky ) . remove ( ) ; e . $sticky && e . $sticky . length && e . $sticky . remove ( ) ; l ( ".hasStickyHeaders" ) . length || l ( window ) . unbind ( "scroll.tsSticky resize.tsSticky" ) ; c . addHeaderResizeEvent ( b , ! 1 ) } } ) ;
2014-03-31 11:13:35 +00:00
c . addWidget ( { id : "resizable" , priority : 40 , options : { resizable : ! 0 , resizable _addLastColumn : ! 1 , resizable _widths : [ ] } , format : function ( b , a , e ) { if ( ! a . $table . hasClass ( "hasResizable" ) ) { a . $table . addClass ( "hasResizable" ) ; c . resizableReset ( b , ! 0 ) ; var f , d , g , h , k = { } , q = a . $table , n = 0 , p = null , m = null , v = 20 > Math . abs ( q . parent ( ) . width ( ) - q . width ( ) ) , s = function ( ) { c . storage && p && m && ( k = { } , k [ p . index ( ) ] = p . width ( ) , k [ m . index ( ) ] = m . width ( ) , p . width ( k [ p . index ( ) ] ) , m . width ( k [ m . index ( ) ] ) , ! 1 !== e . resizable && c . storage ( b , "tablesorter-resizable" , a . $headers . map ( function ( ) { return l ( this ) . width ( ) } ) . get ( ) ) ) ; n = 0 ; p = m = null ; l ( window ) . trigger ( "resize" ) } ; if ( k = c . storage && ! 1 !== e . resizable ? c . storage ( b , "tablesorter-resizable" ) : { } ) for ( h in k ) ! isNaN ( h ) && h < a . $headers . length && a . $headers . eq ( h ) . width ( k [ h ] ) ; f = q . children ( "thead:first" ) . children ( "tr" ) ; f . children ( ) . each ( function ( ) { var b ; b = l ( this ) ; h = b . attr ( "data-column" ) ; b = "false" === c . getData ( b , a . headers [ h ] , "resizable" ) ; f . children ( ) . filter ( '[data-column="' + h + '"]' ) [ b ? "addClass" : "removeClass" ] ( "resizable-false" ) } ) ; f . each ( function ( ) { g = l ( this ) . children ( ) . not ( ".resizable-false" ) ; l ( this ) . find ( "." + c . css . wrapper ) . length || g . wrapInner ( '<div class="' + c . css . wrapper + '" style="position:relative;height:100%;width:100%"></div>' ) ; e . resizable _addLastColumn || ( g = g . slice ( 0 , - 1 ) ) ; d = d ? d . add ( g ) : g } ) ; d . each ( function ( ) { var a = l ( this ) , b = parseInt ( a . css ( "padding-right" ) , 10 ) + 10 ; a . find ( "." + c . css . wrapper ) . append ( '<div class="' + c . css . resizer + '" style="cursor:w-resize;position:absolute;z-index:1;right:-' + b + 'px;top:0;height:100%;width:20px;"></div>' ) } ) . bind ( "mousemove.tsresize" , function ( a ) { if ( 0 !== n && p ) { var b = a . pageX - n , c = p . width ( ) ; p . width ( c + b ) ; p . width ( ) !== c && v && m . width ( m . width ( ) - b ) ; n = a . pageX } } ) . bind ( "mouseup.tsresize" , function ( ) { s ( ) } ) . find ( "." + c . css . resizer + ",." + c . css . grip ) . bind ( "mousedown" , function ( b ) { p = l ( b . target ) . closest ( "th" ) ; var c = a . $headers . filter ( '[data-column="' + p . attr ( "data-column" ) + '"]' ) ; 1 < c . length && ( p = p . add ( c ) ) ; m = b . shiftKey ? p . parent ( ) . find ( "th" ) . not ( ".resizable-false" ) . filter ( ":last" ) : p . nextAll ( ":not(.resizable-false)" ) . eq ( 0 ) ; n = b . pageX } ) ; q . find ( "thead:first" ) . bind ( "mouseup.tsresize mouseleave.tsresize" , function ( ) { s ( ) } ) . bind ( "contextmenu.tsresize" , function ( ) { c . resizableReset ( b ) ; var a = l . isEmptyObject ? l . isEmptyObject ( k ) : ! 0 ; k = { } ; return a } ) } } , remove : function ( b , a ) { a . $table . removeClass ( "hasResizable" ) . children ( "thead" ) . unbind ( "mouseup.tsresize mouseleave.tsresize contextmenu.tsresize" ) . children ( "tr" ) . children ( ) . unbind ( "mousemove.tsresize mouseup.tsresize" ) . find ( "." + c . css . resizer + ",." + c . css . grip ) . remove ( ) ; c . resizableReset ( b ) } } ) ;
c . resizableReset = function ( b , a ) { l ( b ) . each ( function ( ) { var e , f = this . config , d = f && f . widgetOptions ; b && f && ( f . $headers . each ( function ( a ) { e = l ( this ) ; d . resizable _widths [ a ] ? e . css ( "width" , d . resizable _widths [ a ] ) : e . hasClass ( "resizable-false" ) || e . css ( "width" , "" ) } ) , c . storage && ! a && c . storage ( this , "tablesorter-resizable" , { } ) ) } ) } ;
c . addWidget ( { id : "saveSort" , priority : 20 , options : { saveSort : ! 0 } , init : function ( b , a , c , f ) { a . format ( b , c , f , ! 0 ) } , format : function ( b , a , e , f ) { var d , g = a . $table ; e = ! 1 !== e . saveSort ; var h = { sortList : a . sortList } ; a . debug && ( d = new Date ) ; g . hasClass ( "hasSaveSort" ) ? e && b . hasInitialized && c . storage && ( c . storage ( b , "tablesorter-savesort" , h ) , a . debug && c . benchmark ( "saveSort widget: Saving last sort: " + a . sortList , d ) ) : ( g . addClass ( "hasSaveSort" ) , h = "" , c . storage && ( h = ( e = c . storage ( b , "tablesorter-savesort" ) ) && e . hasOwnProperty ( "sortList" ) && l . isArray ( e . sortList ) ? e . sortList : "" , a . debug && c . benchmark ( 'saveSort: Last sort loaded: "' + h + '"' , d ) , g . bind ( "saveSortReset" , function ( a ) { a . stopPropagation ( ) ; c . storage ( b , "tablesorter-savesort" , "" ) } ) ) , f && h && 0 < h . length ? a . sortList = h : b . hasInitialized && h && 0 < h . length && g . trigger ( "sorton" , [ h ] ) ) } , remove : function ( b ) { c . storage && c . storage ( b , "tablesorter-savesort" , "" ) } } )
2013-10-30 22:47:58 +00:00
} ) ( jQuery ) ;