WIP: added incomplete move note action

This commit is contained in:
Thomas Hervey
2018-07-20 12:08:26 -04:00
parent e9aa36e812
commit 1edd9ae92f
4 changed files with 51 additions and 161 deletions
+5 -1
View File
@@ -55,6 +55,10 @@ _extend(osmNote.prototype, {
isNew: function() {
return this.id < 0;
}
},
move: function(loc) {
return this.update({loc: loc});
},
});