create.js 502 B

1234567891011121314151617181920
  1. $(function()
  2. {
  3. $.setAjaxForm('#createHookForm', function(response)
  4. {
  5. if(response.result == 'success')
  6. {
  7. setTimeout(function()
  8. {
  9. $('#triggerModal').load(response.locate, function()
  10. {
  11. $.zui.ajustModalPosition();
  12. });
  13. }, 1200);
  14. }
  15. });
  16. $('.hookForm #conditionType').change();
  17. $('.hookForm #action').change();
  18. $('.hookForm [name*=paramType]').change();
  19. })