| 1234567891011121314151617181920 |
- $(function()
- {
- $.setAjaxForm('#editHookForm', function(response)
- {
- if(response.result == 'success')
- {
- setTimeout(function()
- {
- $('#triggerModal').load(response.locate, function()
- {
- $.zui.ajustModalPosition();
- });
- }, 1200);
- }
- });
- $('.hookForm #conditionType').change();
- $('.hookForm #action').change();
- $('.hookForm [name*=paramType]').change();
- })
|