Handle sync conflicts

This commit is contained in:
Mo Bitar
2017-07-31 14:46:38 -05:00
parent 08ca3105ac
commit 2f2b870496
2 changed files with 20 additions and 28 deletions

View File

@@ -57,7 +57,6 @@ angular.module('app.frontend')
*/
$scope.updateTagsForNote = function(note, stringTags) {
console.log("Updating tags", stringTags);
var toRemove = [];
for(var tag of note.tags) {
if(stringTags.indexOf(tag.title) === -1) {