From 014f3c15d3922cc1a2e90f38ea2fe9c702696a23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Sun, 18 Sep 2022 10:26:51 +0200 Subject: [PATCH] fix default value of smart fold button --- onlinetichu-counter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/onlinetichu-counter.js b/onlinetichu-counter.js index 5f73b60..e8a203b 100644 --- a/onlinetichu-counter.js +++ b/onlinetichu-counter.js @@ -1,6 +1,6 @@ // ==UserScript== // @name onlinetichu.com card counter -// @version 1.2.1 +// @version 1.2.2 // @description automatically count cards at onlinetichu.com // @match *://*.onlinetichu.com/Site/Game/Table/* // @author Maximilian Keßler @@ -187,7 +187,7 @@ function injectCounter() { smartFoldButton.className = "btn btn-danger btn-xs"; smartFoldButton.id = "smartFold"; smartFoldButton.type = "button"; - smartFoldButton.innerHTML = 'Smart fold: Yes'; + smartFoldButton.innerHTML = 'Smart fold: On'; var showCardCounterButton = document.createElement('button'); showCardCounterButton.className = "btn btn-primary btn-xs";