« get me outta code hell

fix colors showing in chronology links - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
author(quasar) nebula <towerofnix@gmail.com>2021-05-27 12:17:14 -0300
committer(quasar) nebula <towerofnix@gmail.com>2021-05-27 12:17:14 -0300
commitd57e22972213bf45eda1ffa0ba290b5bffffc195 (patch)
tree023650cb7906034525b04adb73e4151d444bfa8f
parentd41853b617e1b0e7fa41309ff0d42611305c3149 (diff)
fix colors showing in chronology links
-rwxr-xr-xsrc/upd8.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/upd8.js b/src/upd8.js
index 56fdcf4..35f7d6e 100755
--- a/src/upd8.js
+++ b/src/upd8.js
@@ -5158,14 +5158,14 @@ function chronologyLinks(currentThing, {
         const next = releasedThings[index + 1];
         const parts = [
             previous && linkAnythingMan(previous, {
-                link,
-                text: strings('misc.nav.previous'),
-                wikiData
+                link, wikiData,
+                color: false,
+                text: strings('misc.nav.previous')
             }),
             next && linkAnythingMan(next, {
-                link,
-                text: strings('misc.nav.next'),
-                wikiData
+                link, wikiData,
+                color: false,
+                text: strings('misc.nav.next')
             })
         ].filter(Boolean);