handling of cloned notes moved to backend which should fix some annoying behaviors

This commit is contained in:
azivner
2017-08-23 21:43:02 -04:00
parent 36e5259527
commit 9d260e9f5c
4 changed files with 18 additions and 10 deletions

View File

@@ -42,14 +42,12 @@ function saveNoteIfChanged(callback) {
note.detail.note_title = title;
const note_id = note.detail.is_clone ? note.detail.note_clone_id : note.detail.note_id;
$.ajax({
url: baseUrl + 'notes/' + note_id,
url: baseUrl + 'notes/' + note.detail.note_id,
type: 'PUT',
data: JSON.stringify(note),
contentType: "application/json",
success: function(result) {
success: function() {
isNoteChanged = false;
message("Saved!");
@@ -58,7 +56,7 @@ function saveNoteIfChanged(callback) {
callback();
}
},
error: function(result) {
error: function() {
error("Error saving the note!");
}
});