1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-12 22:57:38 +02:00

Many small changes

This commit is contained in:
Laurent Cozic
2017-07-15 00:12:32 +01:00
parent f840dd505f
commit 1c16e493f6
6 changed files with 259 additions and 134 deletions

View File

@ -190,6 +190,15 @@ class Note extends BaseItem {
});
}
static async delete(id, options = null) {
let r = await super.delete(id, options);
this.dispatch({
type: 'NOTES_DELETE',
noteId: id,
});
}
}
Note.updateGeolocationEnabled_ = true;