This commit is contained in:
zadam
2019-05-04 14:34:03 +02:00
parent ff41904d72
commit 32439ed006
4 changed files with 8 additions and 10 deletions

View File

@@ -42,6 +42,7 @@ class NoteContext {
this.$childrenOverview = this.$noteTabContent.find(".children-overview");
this.$scriptArea = this.$noteTabContent.find(".note-detail-script-area");
this.$savedIndicator = this.$noteTabContent.find(".saved-indicator");
this.noteChangeDisabled = false;
this.isNoteChanged = false;
this.components = {};
@@ -116,7 +117,7 @@ class NoteContext {
}
noteChanged() {
if (noteChangeDisabled) {
if (this.noteChangeDisabled) {
return;
}