From 4036bdc042b069e3d2d5ec3bde22ceb5e7d84757 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Thu, 3 Nov 2022 20:41:12 +0100 Subject: [PATCH] deactivate smart fold by default --- onlinetichu-counter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/onlinetichu-counter.js b/onlinetichu-counter.js index bd4c40f..df70a56 100644 --- a/onlinetichu-counter.js +++ b/onlinetichu-counter.js @@ -187,7 +187,7 @@ function injectCounter() { smartFoldButton.className = "btn btn-danger btn-xs"; smartFoldButton.id = "smartFold"; smartFoldButton.type = "button"; - smartFoldButton.innerHTML = 'Smart fold: On'; + smartFoldButton.innerHTML = 'Smart fold: Off'; var showCardCounterButton = document.createElement('button'); showCardCounterButton.className = "btn btn-primary btn-xs"; @@ -269,7 +269,7 @@ function injectCounter() { playerNames: {}, // config values, triggered with buttons - smartFold: true, + smartFold: false, showCardCounter: false, showRemaining: true, showCountedCards: false,