add_cron.js 905 B

12345678910111213141516
  1. $(document).ready(function(){
  2. $( "#tabs" ).tabs();
  3. $('.context-helper').click(function(){ $('#tabs').toggle(); $('.context-helper').toggle(); });
  4. $('.context-helper-close').click(function(){ $('#tabs').toggle(); $('.context-helper').toggle(); });
  5. $('.helper-container form').submit(function(){
  6. $('#vstobjects input[name=v_min]').val($(this).find(':input[name=h_min]').val()).effect('highlight');
  7. $('#vstobjects input[name=v_hour]').val($(this).find(':input[name=h_hour]').val()).effect('highlight');
  8. $('#vstobjects input[name=v_day]').val($(this).find(':input[name=h_day]').val()).effect('highlight');
  9. $('#vstobjects input[name=v_month]').val($(this).find(':input[name=h_month]').val()).effect('highlight');
  10. $('#vstobjects input[name=v_wday]').val($(this).find(':input[name=h_wday]').val()).effect('highlight');
  11. return false;
  12. });
  13. })