Skip to content

Commit ca323c6

Browse files
committed
series/add.js(chooseCountryBySlug): rename local variable.
No functional changes.
1 parent 1048e4d commit ca323c6

File tree

1 file changed

+2
-2
lines changed
  • src/main/javascript/series

1 file changed

+2
-2
lines changed

src/main/javascript/series/add.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function initPage(suggestCountryUrl) {
3939
}
4040

4141
function chooseCountryBySlug(slug) {
42-
var select_country = $("#country").selectize();
43-
var selectize = select_country[0].selectize;
42+
var countrySelectBox = $("#country").selectize();
43+
var selectize = countrySelectBox[0].selectize;
4444
selectize.setValue(slug);
4545
}

0 commit comments

Comments
 (0)