mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 02:28:05 -07:00
Flatta and Diman fixes
This commit is contained in:
commit
3bed87ba15
98 changed files with 5260 additions and 3031 deletions
16
web/js/pages/add_cron.js
Normal file
16
web/js/pages/add_cron.js
Normal file
|
@ -0,0 +1,16 @@
|
|||
$(document).ready(function(){
|
||||
$( "#tabs" ).tabs();
|
||||
$('.context-helper').click(function(){ $('#tabs').toggle(); $('.context-helper').toggle(); });
|
||||
$('.context-helper-close').click(function(){ $('#tabs').toggle(); $('.context-helper').toggle(); });
|
||||
|
||||
$('.helper-container form').submit(function(){
|
||||
$('#vstobjects input[name=v_min]').val($(this).find(':input[name=h_min]').val()).effect('highlight');
|
||||
$('#vstobjects input[name=v_hour]').val($(this).find(':input[name=h_hour]').val()).effect('highlight');
|
||||
$('#vstobjects input[name=v_day]').val($(this).find(':input[name=h_day]').val()).effect('highlight');
|
||||
$('#vstobjects input[name=v_month]').val($(this).find(':input[name=h_month]').val()).effect('highlight');
|
||||
$('#vstobjects input[name=v_wday]').val($(this).find(':input[name=h_wday]').val()).effect('highlight');
|
||||
|
||||
return false;
|
||||
});
|
||||
})
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue