autosubmit.js 321 B

12345678910111213
  1. UE.commands['autosubmit'] = {
  2. execCommand:function () {
  3. var me=this,
  4. form = domUtils.findParentByTagName(me.iframe,"form", false);
  5. if (form) {
  6. if(me.fireEvent("beforesubmit")===false) return;
  7. me.sync();
  8. form.submit();
  9. }
  10. }
  11. };