From 3b2be804224844088a77b7e7de1ba419f22d09c9 Mon Sep 17 00:00:00 2001 From: Holden Rohrer Date: Thu, 9 Jan 2020 21:02:01 -0500 Subject: fixed typo --- examples/jarvis.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/jarvis.js') diff --git a/examples/jarvis.js b/examples/jarvis.js index 2fec17d..0b4b2fe 100644 --- a/examples/jarvis.js +++ b/examples/jarvis.js @@ -23,7 +23,7 @@ main.on('tileUpdate', tileHandler); //// Configurable helpers for utilities function init(send){ sender = send; - setTimeout(()=>{writes.enable},1000); // Would fail if a write were added because it would be within a second of cursor send + setTimeout(()=>{writes.enable()},1000); // Would fail if a write were added because it would be within a second of cursor send } function deinit(){ -- cgit