1- /*!
1+ /*!
22 * jQuery Bootgrid v1.3.5 - 03/11/2019
33 * Copyright © 2014-2015 Rafael J. Staib; Copyright © 2018-2019 Deciso B.V. (http://www.jquery-bootgrid.com)
44 * Licensed under the MIT license. See LICENSE.txt for more details.
@@ -1876,8 +1876,8 @@ $.fn.extend({
18761876
18771877 _bgBusyAria : function ( busy )
18781878 {
1879- return ( busy == null || busy ) ?
1880- this . _bgAria ( "busy" , "true" ) :
1879+ return ( busy == null || busy ) ?
1880+ this . _bgAria ( "busy" , "true" ) :
18811881 this . _bgAria ( "busy" , "false" ) ;
18821882 } ,
18831883
@@ -1888,29 +1888,29 @@ $.fn.extend({
18881888
18891889 _bgEnableAria : function ( enable )
18901890 {
1891- return ( enable == null || enable ) ?
1892- this . removeClass ( "disabled" ) . _bgAria ( "disabled" , "false" ) :
1891+ return ( enable == null || enable ) ?
1892+ this . removeClass ( "disabled" ) . _bgAria ( "disabled" , "false" ) :
18931893 this . addClass ( "disabled" ) . _bgAria ( "disabled" , "true" ) ;
18941894 } ,
18951895
18961896 _bgEnableField : function ( enable )
18971897 {
1898- return ( enable == null || enable ) ?
1899- this . removeAttr ( "disabled" ) :
1898+ return ( enable == null || enable ) ?
1899+ this . removeAttr ( "disabled" ) :
19001900 this . attr ( "disabled" , "disable" ) ;
19011901 } ,
19021902
19031903 _bgShowAria : function ( show )
19041904 {
1905- return ( show == null || show ) ?
1905+ return ( show == null || show ) ?
19061906 this . show ( ) . _bgAria ( "hidden" , "false" ) :
19071907 this . hide ( ) . _bgAria ( "hidden" , "true" ) ;
19081908 } ,
19091909
19101910 _bgSelectAria : function ( select )
19111911 {
1912- return ( select == null || select ) ?
1913- this . addClass ( "active" ) . _bgAria ( "selected" , "true" ) :
1912+ return ( select == null || select ) ?
1913+ this . addClass ( "active" ) . _bgAria ( "selected" , "true" ) :
19141914 this . removeClass ( "active" ) . _bgAria ( "selected" , "false" ) ;
19151915 } ,
19161916
@@ -2000,8 +2000,8 @@ if (!Array.prototype.page)
20002000 {
20012001 var skip = ( page - 1 ) * size ,
20022002 end = skip + size ;
2003- return ( this . length > skip ) ?
2004- ( this . length > end ) ? this . slice ( skip , end ) :
2003+ return ( this . length > skip ) ?
2004+ ( this . length > end ) ? this . slice ( skip , end ) :
20052005 this . slice ( skip ) : [ ] ;
20062006 } ;
20072007}
@@ -2090,4 +2090,4 @@ $.fn.bootgrid.noConflict = function ()
20902090// ============
20912091
20922092$ ( "[data-toggle=\"bootgrid\"]" ) . bootgrid ( ) ;
2093- } ) ( jQuery , window ) ;
2093+ } ) ( jQuery , window ) ;
0 commit comments