aboutsummaryrefslogtreecommitdiff
path: root/questions
diff options
context:
space:
mode:
Diffstat (limited to 'questions')
-rw-r--r--questions/index.js2
-rw-r--r--questions/public/script.js4
2 files changed, 3 insertions, 3 deletions
diff --git a/questions/index.js b/questions/index.js
index 52a26e9..daf419d 100644
--- a/questions/index.js
+++ b/questions/index.js
@@ -22,7 +22,7 @@ app.get("/api/question/:id", checkUser, async (req, res) => {
[question.id, req.session.uid],
);
question.answer = answers.length > 0 ? answers[0].answer : undefined;
- res.json(question); // ๐Ÿ˜œ
+ res.json(question);
} else {
res.json({});
}
diff --git a/questions/public/script.js b/questions/public/script.js
index 70a15ef..e5a03d0 100644
--- a/questions/public/script.js
+++ b/questions/public/script.js
@@ -52,7 +52,7 @@ function getNext(q = 0) {
window.location.assign(`/questions/?qid=${q}`);
}
-// I did this myself lel ๐Ÿคจ
+// I did this myself lel
Object.prototype.empty = function () {
return Object.keys(this).length === 0;
};
@@ -78,6 +78,6 @@ buttons.on("click", async (e) => {
method = "PUT";
getNext(qid);
// document.querySelector(`.answer-btn[data-value="${e.target.dataset.value}"]`).style.opacity = "0.5";
- // document.querySelector(`.answer-btn[data-value="${+!+e.target.dataset.value}"]`).style.opacity = "1"; // Let's not talk about it ๐Ÿ˜‰
+ // document.querySelector(`.answer-btn[data-value="${+!+e.target.dataset.value}"]`).style.opacity = "1"; // Let's not talk about it
}
}); \ No newline at end of file