File tree 3 files changed +4
-4
lines changed
webapp/WEB-INF/views/series
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ public final class Url {
83
83
public static final String ADD_SERIES_WITH_COUNTRY_PAGE = "/series/add/country/{slug}" ;
84
84
85
85
// MUST be updated when any of our resources were modified
86
- public static final String RESOURCES_VERSION = "v0.3.5 " ;
86
+ public static final String RESOURCES_VERSION = "v0.3.6 " ;
87
87
88
88
// CheckStyle: ignore LineLength for next 4 lines
89
89
public static final String MAIN_CSS = "/static/" + RESOURCES_VERSION + "/styles/main.min.css" ;
Original file line number Diff line number Diff line change @@ -35,10 +35,10 @@ function initPage(suggestCountryUrl) {
35
35
36
36
var guessCountryLink = $ ( '#js-guess-country-link' ) ;
37
37
guessCountryLink . click ( function chooseSuggestedCountry ( ) {
38
- guessCountryLink . hide ( ) ;
38
+ guessCountryLink . addClass ( 'hidden' ) ;
39
39
chooseCountryBySlug ( slug ) ;
40
40
} ) ;
41
- guessCountryLink . show ( ) ;
41
+ guessCountryLink . removeClass ( 'hidden' ) ;
42
42
} ) ;
43
43
}
44
44
}
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ <h3 th:text="${#strings.capitalize(add_series)}">
169
169
</ div >
170
170
171
171
< small togglz:active ="SHOW_SUGGESTION_LINK ">
172
- < a tabindex ="-1 " th:text ="#{t_guess_country} " href ="javascript:$('#js-guess-country-link').hide(); chooseCountryBySlug('russia'); void(0) " th:href ="'javascript:void(0)' " id ="js-guess-country-link " class ="link-vcenter " th:style =" 'display: none' "> Guess a country</ a >
172
+ < a tabindex ="-1 " th:text ="#{t_guess_country} " href ="javascript:$('#js-guess-country-link').hide(); chooseCountryBySlug('russia'); void(0) " th:href ="'javascript:void(0)' " id ="js-guess-country-link " class ="link-vcenter " th:classappend =" hidden "> Guess a country</ a >
173
173
</ small >
174
174
</ div >
175
175
You can’t perform that action at this time.
0 commit comments