create.flow.html.hook.php 291 B

1234567891011
  1. <script>
  2. $(function()
  3. {
  4. $('#hookDIV .table-form tr:first td.w-100px').width('90').removeClass('w-100px');
  5. $(document).on('click', '.btn.addWhere', function()
  6. {
  7. var $nextWhere = $(this).closest('tr').next();
  8. $nextWhere.find('#field').chosen();
  9. })
  10. })
  11. </script>