update editor's events

This commit is contained in:
Mariela Michalek 2014-04-12 15:00:51 -03:00
parent 8dcf0be662
commit 771833e8f2
2 changed files with 24 additions and 16 deletions

View File

@ -52,7 +52,8 @@ mindplot.widget.LinkEditor = new Class({
input.css('width','70%').css('margin','0px 20px');
if (model.getValue() != null){
input.value = model.getValue();}
input.val(model.getValue());
}
// type:Browser.ie ? 'text' : 'url', // IE workaround
// Open Button
@ -69,18 +70,17 @@ mindplot.widget.LinkEditor = new Class({
form.append(open);
$(document).ready(function () {
$(document).on('submit','#linkFormId',function () {
var me = this;
$(document).on('submit','#linkFormId',function (event) {
event.stopPropagation();
event.preventDefault();
if (input.value != null && input.value.trim() != "") {
model.setValue(input.value);
var inputValue = input.val();
if (inputValue != null && inputValue.trim() != "") {
model.setValue(inputValue);
}
this.close();
me.close();
});
$(document).on('click','#acceptBtn',function () {
$("#linkFormId").submit();
});
});
// result.addEvent('keydown', function (event) {
@ -89,5 +89,13 @@ mindplot.widget.LinkEditor = new Class({
//
result.append(form);
return result;
},
onAcceptClick: function() {
$("#linkFormId").submit();
},
close:function () {
this.parent();
}
});

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();
}
});