diff options
author | Holden Rohrer <holden.rohrer@gmail.com> | 2020-01-09 21:02:01 -0500 |
---|---|---|
committer | Holden Rohrer <holden.rohrer@gmail.com> | 2020-01-09 21:02:01 -0500 |
commit | 3b2be804224844088a77b7e7de1ba419f22d09c9 (patch) | |
tree | 3e525e7187e32c8216690dfd8c292f129d154be0 /examples | |
parent | 04cc0029afb7e65eaa0316ab2f1c671c1a4100b7 (diff) |
fixed typo
Diffstat (limited to 'examples')
-rw-r--r-- | examples/jarvis.js | 2 |
1 files changed, 1 insertions, 1 deletions
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(){ |