Merge pull request #555 from nextcloud/fix-the-update-of-the-editabletextlabel-input

Fix the update of the EditableTextLabel input
This commit is contained in:
Ivan Sein 2018-01-10 01:28:23 +01:00 коммит произвёл GitHub
Родитель cb403ccdf2 4cf514478a
Коммит 505f2d55c0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 6 удалений

Просмотреть файл

@ -179,6 +179,8 @@
},
showInput: function() {
this.getUI('input').val(this.model.get(this.modelAttribute));
this.getUI('inputWrapper').removeClass('hidden-important');
this.getUI('labelWrapper').addClass('hidden-important');
@ -196,7 +198,7 @@
this.confirmEdit();
} else if (event.keyCode === 27) {
// ESC
this.discardEdit();
this.hideInput();
}
},
@ -221,11 +223,6 @@
this.model.save(this.modelAttribute, newText, options);
},
discardEdit: function() {
this.hideInput();
this.getUI('input').val(this.model.get(this.modelAttribute));
}
});
OCA.SpreedMe.Views.EditableTextLabel = EditableTextLabel;