From 89e89e04d85af035e4864e45db4174a9876d7cc3 Mon Sep 17 00:00:00 2001 From: azivner Date: Mon, 12 Feb 2018 00:30:02 -0500 Subject: [PATCH] alt+t is now shortcut for today script --- src/scripts/today.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/scripts/today.js b/src/scripts/today.js index f348cc70d..1204f1ea7 100644 --- a/src/scripts/today.js +++ b/src/scripts/today.js @@ -8,4 +8,6 @@ window.goToday = async function() { }); api.activateNote(todayNoteId); -}; \ No newline at end of file +}; + +$(document).bind('keydown', "alt+t", window.goToday); \ No newline at end of file