diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2023-11-15 18:55:22 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2023-11-15 18:56:58 -0400 |
commit | 91f00a36b33d13630ea7a9ac6fcd03110b0f1a73 (patch) | |
tree | 67282bebb4546dd26b8181aee1463295a89accce /src/content | |
parent | 43141f1fc41768679b63e154ac21203e928b17c7 (diff) |
client: tidy & better isolate random links code in client info
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/dependencies/listRandomPageLinks.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/content/dependencies/listRandomPageLinks.js b/src/content/dependencies/listRandomPageLinks.js index 0b904019..5e2972ad 100644 --- a/src/content/dependencies/listRandomPageLinks.js +++ b/src/content/dependencies/listRandomPageLinks.js @@ -114,12 +114,10 @@ export default { language.$('listingPage.other.randomPages.chooseLinkLine.browserSupportPart'), })), - html.tag('p', - {class: 'js-hide-once-data'}, + html.tag('p', {id: 'data-loading-line'}, language.$('listingPage.other.randomPages.dataLoadingLine')), - html.tag('p', - {class: 'js-show-once-data'}, + html.tag('p', {id: 'data-loaded-line'}, language.$('listingPage.other.randomPages.dataLoadedLine')), ], |