File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 174
174
//}
175
175
}
176
176
if ( settings . sortable ) {
177
- var n = 0 ;
177
+ var nAElm = 0 ;
178
178
$ ( elm ) . find ( "thead th" ) . each ( function ( ) {
179
179
elm . fancyTable . sortAs . push (
180
180
( $ ( this ) . data ( 'sortas' ) == 'numeric' ) ? 'numeric' :
186
186
href : "#" ,
187
187
"aria-label" : "Sort by " + $ ( this ) . text ( ) ,
188
188
html :content ,
189
- "data-n" : n ,
189
+ "data-n" : nAElm ,
190
190
class :""
191
191
} ) . css ( { "cursor" :"pointer" , "color" :"inherit" , "text-decoration" :"none" } ) . bind ( "click" , function ( ) {
192
192
if ( elm . fancyTable . sortColumn == $ ( this ) . data ( "n" ) ) {
201
201
} ) ;
202
202
$ ( this ) . empty ( ) ;
203
203
$ ( this ) . append ( a ) ;
204
- n ++ ;
204
+ nAElm ++ ;
205
205
} ) ;
206
206
}
207
207
if ( settings . searchable ) {
220
220
$ ( searchField ) . appendTo ( $ ( th ) ) ;
221
221
$ ( th ) . appendTo ( $ ( searchHeader ) ) ;
222
222
} else {
223
- n = 0 ;
223
+ var nInputElm = 0 ;
224
224
$ ( elm ) . find ( "td" ) . first ( ) . parent ( ) . find ( "td" ) . each ( function ( ) {
225
225
elm . fancyTable . searchArr . push ( "" ) ;
226
226
var searchField = $ ( "<input>" , {
227
227
"aria-label" : "Search column" ,
228
- "data-n" : n ,
228
+ "data-n" : nInputElm ,
229
229
"placeholder" : settings . inputPlaceholder ,
230
230
style :"width:100%;box-sizing:border-box;" + settings . inputStyle
231
231
} ) . bind ( "change paste keyup" , function ( ) {
236
236
var th = $ ( "<th>" , { style :"padding:2px;" } ) ;
237
237
$ ( searchField ) . appendTo ( $ ( th ) ) ;
238
238
$ ( th ) . appendTo ( $ ( searchHeader ) ) ;
239
- n ++ ;
239
+ nInputElm ++ ;
240
240
} ) ;
241
241
}
242
242
searchHeader . appendTo ( $ ( elm ) . find ( "thead" ) ) ;
You can’t perform that action at this time.
0 commit comments