diff --git a/files/assets/CHRISTMAS/js/submission.js b/files/assets/CHRISTMAS/js/submission.js
index b3b31cce7..075b4cd26 100644
--- a/files/assets/CHRISTMAS/js/submission.js
+++ b/files/assets/CHRISTMAS/js/submission.js
@@ -9,3 +9,17 @@ function togglePostEdit(id){
form.classList.toggle("hidden");
autoExpand(box);
};
+
+function bet_vote(cid) {
+ for(let el of document.getElementsByClassName('bet')) {
+ el.disabled = true;
+ }
+ for(let el of document.getElementsByClassName('cost')) {
+ el.classList.add('hidden')
+ }
+ var scoretext = document.getElementById('bet-' + cid);
+ var score = Number(scoretext.textContent);
+ scoretext.textContent = score + 1;
+ post('/bet/' + cid);
+ document.getElementById("user-coins-amount").innerText = parseInt(document.getElementById("user-coins-amount").innerText) - 200;
+}
\ No newline at end of file
diff --git a/files/templates/CHRISTMAS/submission.html b/files/templates/CHRISTMAS/submission.html
index 611e539d5..e2f49488e 100644
--- a/files/templates/CHRISTMAS/submission.html
+++ b/files/templates/CHRISTMAS/submission.html
@@ -622,7 +622,7 @@
{% endif %}
{% if v and (v.id == p.author_id or v.admin_level > 1 and v.admin_level > 2) %}
-
+
{% endif %}
{% if not v or v.highlightcomments %}