From 37d09a0ea1540474a0b7ddaa6fff337b094e9bff Mon Sep 17 00:00:00 2001 From: BreMea <63671187+BreMea@users.noreply.github.com> Date: Mon, 20 Apr 2020 13:56:59 -0400 Subject: [PATCH 1/3] Added new 'General' reply Allows user to select subforum to generate a 'should belong in x subforum' text --- index.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/index.html b/index.html index 8706932..d3f4f0b 100644 --- a/index.html +++ b/index.html @@ -35,6 +35,20 @@

General


+
+
+ + +
+
+
+

Suggestions

@@ -116,6 +130,9 @@

Bugs And Glitches

copyText.select(); document.execCommand("copy"); } + document.getElementsByTagName('select')[0].onchange = function() { + document.getElementById('Text12').innerHTML = `I think topic this would fit better in the "` + document.getElementsByTagName('select')[0].value + `" subforum. I'll ask to have it moved for you.`; + } From bb2bcafb4a291cace8e26c137dbfc701ea4f2f0b Mon Sep 17 00:00:00 2001 From: BreMea <63671187+BreMea@users.noreply.github.com> Date: Mon, 20 Apr 2020 20:35:30 -0400 Subject: [PATCH 2/3] added