1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-15 23:00:36 +02:00

Long list format

This commit is contained in:
Laurent Cozic
2017-07-12 21:39:47 +01:00
parent b596747612
commit 74e112fef9
7 changed files with 122 additions and 12 deletions

View File

@ -22,6 +22,10 @@ let time = {
return moment.unix(ms / 1000).utc().format('YYYY-MM-DDTHH:mm:ss') + 'Z';
},
unixMsToLocalDateTime(ms) {
return moment.unix(ms / 1000).format('DD/MM/YYYY HH:mm');
},
msleep(ms) {
return new Promise((resolve, reject) => {
setTimeout(() => {