File tree Expand file tree Collapse file tree 3 files changed +18
-6
lines changed
Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -968,9 +968,13 @@ function showLoadingState() {
968968 * Hide loading spinner
969969 */
970970function hideLoadingState ( ) {
971- const loadingState = document . getElementById ( "loadingState" ) ;
972- const loadingStateDesktop = document . getElementById ( "loadingStateDesktop" ) ;
973-
974- if ( loadingState ) loadingState . style . display = "none" ;
975- if ( loadingStateDesktop ) loadingStateDesktop . style . display = "none" ;
971+ const loadingState = document . getElementById ( 'loadingState' ) ;
972+ const loadingStateDesktop = document . getElementById ( 'loadingStateDesktop' ) ;
973+ const resultsInfo = document . getElementById ( 'resultsInfo' ) ;
974+ const resultsInfoDesktop = document . getElementById ( 'resultsInfoDesktop' )
975+
976+ if ( loadingState ) loadingState . style . display = 'none' ;
977+ if ( loadingStateDesktop ) loadingStateDesktop . style . display = 'none' ;
978+ if ( resultsInfo ) resultsInfo . style . display = 'block' ;
979+ if ( resultsInfoDesktop ) resultsInfoDesktop . style . display = 'block' ;
976980}
Original file line number Diff line number Diff line change @@ -300,6 +300,10 @@ h1 {
300300 font-weight : 600 ;
301301}
302302
303+ # resultsFound {
304+ display : none;
305+ }
306+
303307.results-info-desktop {
304308 text-align : center;
305309 color : # 666 ;
@@ -310,6 +314,10 @@ h1 {
310314 font-weight : 600 ;
311315}
312316
317+ # resultsFoundDesktop {
318+ display : none;
319+ }
320+
313321/* ============================================================================ */
314322/* LOADING STATE */
315323/* ============================================================================ */
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments