update editor's events

This commit is contained in:
Mariela Michalek
2014-04-12 15:00:51 -03:00
parent 356ccfe115
commit 1416ff2d11
2 changed files with 24 additions and 16 deletions

View File

@@ -38,26 +38,26 @@ _buildPanel:function (model) {
}
result.append(form);
var me = this;
$(document).ready(function () {
$(document).on('submit','#noteFormId',function () {
$(document).on('submit','#noteFormId',function (event) {
event.stopPropagation();
event.preventDefault();
if (textArea.val()) {
model.setValue(textArea.val());
}
this.close();
});
$(document).on('click','#acceptBtn',function () {
$("#noteFormId").submit();
me.close();
});
});
return result;
},
onAcceptClick: function() {
$("#noteFormId").submit();
},
close:function () {
this.close();
this.parent();
}
});