commit a50b98155a1f496c7b51176bcf19accc7e98afce
parent 311d0e6fbc3f78561915d1cdd2cb9184f6d48473
Author: Hunter
Date:   Mon,  9 Mar 2026 23:57:02 -0400

disable spellcheck on macOS safari

Diffstat:
Mresources/task-element.js | 3+++
Msw.js | 2+-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/resources/task-element.js b/resources/task-element.js @@ -24,6 +24,9 @@ function createTaskElement(task, isParentTask = false) { taskInput.type = 'text'; taskInput.value = task.text; taskInput.setAttribute('autocomplete', 'off'); + taskInput.setAttribute('spellcheck', 'false'); + taskInput.setAttribute('autocorrect', 'off'); + taskInput.setAttribute('autocapitalize', 'off'); taskInput.addEventListener('mousedown', function(e) { e.stopPropagation(); diff --git a/sw.js b/sw.js @@ -1,4 +1,4 @@ -const CACHE_NAME = 'matryoshka-v1.3'; +const CACHE_NAME = 'matryoshka-v1.4'; const ASSETS = [ './', 'index.html',