mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-26 22:02:13 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7113 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
8ddebe270d
commit
c1370ed26f
1 changed files with 4 additions and 2 deletions
|
|
@ -76,7 +76,7 @@ var Validator = xe.createApp('Validator', {
|
|||
var hasLegacyFn = $.isFunction(legacyFn);
|
||||
var bResult = hasLegacyFn?legacyFn.apply(this):self.run(this);
|
||||
|
||||
return false;
|
||||
return bResult;
|
||||
});
|
||||
},
|
||||
API_VALIDATE : function(sender, params) {
|
||||
|
|
@ -225,7 +225,9 @@ var EditorStub = xe.createPlugin('editor_stub', {
|
|||
var seq = form.getAttribute('editor_sequence');
|
||||
|
||||
if (seq) {
|
||||
form.content.value = editorGetContentTextarea_xe(seq) || '';
|
||||
try {
|
||||
editorRelKeys[seq].content.value = editorGetContentTextarea_xe(seq) || '';
|
||||
} catch(e) { }
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue