Skip to content

Commit fa1df16

Browse files
author
Johan
committedNov 17, 2021
Refactor code to reflect variable scoping
1 parent 53303ab commit fa1df16

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

‎src/fancyTable.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
//}
175175
}
176176
if(settings.sortable){
177-
var n=0;
177+
var nAElm=0;
178178
$(elm).find("thead th").each(function() {
179179
elm.fancyTable.sortAs.push(
180180
($(this).data('sortas')=='numeric') ? 'numeric' :
@@ -186,7 +186,7 @@
186186
href: "#",
187187
"aria-label": "Sort by " + $(this).text(),
188188
html:content,
189-
"data-n": n,
189+
"data-n": nAElm,
190190
class:""
191191
}).css({"cursor":"pointer","color":"inherit","text-decoration":"none"}).bind("click",function(){
192192
if(elm.fancyTable.sortColumn == $(this).data("n")){
@@ -201,7 +201,7 @@
201201
});
202202
$(this).empty();
203203
$(this).append(a);
204-
n++;
204+
nAElm++;
205205
});
206206
}
207207
if(settings.searchable){
@@ -220,12 +220,12 @@
220220
$(searchField).appendTo($(th));
221221
$(th).appendTo($(searchHeader));
222222
} else {
223-
n=0;
223+
var nInputElm=0;
224224
$(elm).find("td").first().parent().find("td").each(function() {
225225
elm.fancyTable.searchArr.push("");
226226
var searchField = $("<input>",{
227227
"aria-label": "Search column",
228-
"data-n": n,
228+
"data-n": nInputElm,
229229
"placeholder": settings.inputPlaceholder,
230230
style:"width:100%;box-sizing:border-box;"+settings.inputStyle
231231
}).bind("change paste keyup",function(){
@@ -236,7 +236,7 @@
236236
var th = $("<th>",{ style:"padding:2px;" });
237237
$(searchField).appendTo($(th));
238238
$(th).appendTo($(searchHeader));
239-
n++;
239+
nInputElm++;
240240
});
241241
}
242242
searchHeader.appendTo($(elm).find("thead"));

0 commit comments

Comments
 (0)
Please sign in to comment.