File tree 1 file changed +3
-3
lines changed
src/main/javascript/series 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,11 +29,11 @@ function initPage(suggestCountryUrl) {
29
29
30
30
if ( suggestCountryUrl != null ) {
31
31
$ . get ( suggestCountryUrl , function handleSuggestedCountry ( slug ) {
32
- if ( slug == "" ) {
32
+ if ( slug == '' ) {
33
33
return ;
34
34
}
35
35
36
- var guessCountryLink = $ ( " #js-guess-country-link" ) ;
36
+ var guessCountryLink = $ ( ' #js-guess-country-link' ) ;
37
37
guessCountryLink . click ( function chooseSuggestedCountry ( ) {
38
38
guessCountryLink . hide ( ) ;
39
39
chooseCountryBySlug ( slug ) ;
@@ -44,7 +44,7 @@ function initPage(suggestCountryUrl) {
44
44
}
45
45
46
46
function chooseCountryBySlug ( slug ) {
47
- var countrySelectBox = $ ( " #country" ) . selectize ( ) ;
47
+ var countrySelectBox = $ ( ' #country' ) . selectize ( ) ;
48
48
var selectize = countrySelectBox [ 0 ] . selectize ;
49
49
selectize . setValue ( slug ) ;
50
50
}
You can’t perform that action at this time.
0 commit comments