Last active
November 5, 2016 23:49
-
-
Save lumenwrites/4c3b908fa917ae25ff3e3936d573134e to your computer and use it in GitHub Desktop.
This script creates a shortcut (Alt+d) that adds a tag with the current date at the end of the card.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.get('cards').models.map(function(c) { | |
Mousetrap.bind('alt+d', function(e) { | |
var today = new Date(); | |
var dd = today.getDate(); | |
var mm = today.getMonth()+1; //January is 0! | |
var yyyy = today.getFullYear(); | |
if(dd<10) { | |
dd='0'+dd | |
} | |
if(mm<10) { | |
mm='0'+mm | |
} | |
today = '#'+yyyy+'-'+mm+'-'+dd; | |
var id = app.get('cardId'); | |
var c = app.get('cards')._byId[id]; | |
c.saveContent(c.get('content') + '\n' + today); | |
return false; | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment