2011-11-28 15:50:19 +00:00
|
|
|
/**
|
|
|
|
* WooCommerce Admin JS
|
|
|
|
*/
|
|
|
|
jQuery(function(){
|
|
|
|
|
2012-03-05 17:19:00 +00:00
|
|
|
// Tooltips
|
|
|
|
jQuery(".tips, .help_tip").tipTip({
|
2012-03-20 19:40:52 +00:00
|
|
|
'attribute' : 'data-tip',
|
2011-11-28 15:50:19 +00:00
|
|
|
'fadeIn' : 50,
|
2012-07-22 12:50:45 +00:00
|
|
|
'fadeOut' : 50,
|
|
|
|
'delay' : 200
|
2011-11-28 15:50:19 +00:00
|
|
|
});
|
2012-08-10 09:35:25 +00:00
|
|
|
|
2011-11-28 15:50:19 +00:00
|
|
|
jQuery('select.availability').change(function(){
|
|
|
|
if (jQuery(this).val()=="specific") {
|
|
|
|
jQuery(this).closest('tr').next('tr').show();
|
|
|
|
} else {
|
|
|
|
jQuery(this).closest('tr').next('tr').hide();
|
|
|
|
}
|
|
|
|
}).change();
|
2012-08-10 09:35:25 +00:00
|
|
|
|
2013-07-31 14:12:53 +00:00
|
|
|
// Show order items on orders page
|
|
|
|
jQuery('body').on( 'click', '.show_order_items', function() {
|
|
|
|
jQuery(this).closest('td').find('table').toggle();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2011-12-21 21:12:34 +00:00
|
|
|
// Hidden options
|
2012-03-12 15:48:22 +00:00
|
|
|
jQuery('.hide_options_if_checked').each(function(){
|
2012-08-10 09:35:25 +00:00
|
|
|
|
2012-03-12 15:48:22 +00:00
|
|
|
jQuery(this).find('input:eq(0)').change(function() {
|
2012-08-10 09:35:25 +00:00
|
|
|
|
2012-03-12 15:48:22 +00:00
|
|
|
if (jQuery(this).is(':checked')) {
|
|
|
|
jQuery(this).closest('fieldset, tr').nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option').hide();
|
|
|
|
} else {
|
|
|
|
jQuery(this).closest('fieldset, tr').nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option').show();
|
|
|
|
}
|
2012-08-10 09:35:25 +00:00
|
|
|
|
2012-03-12 15:48:22 +00:00
|
|
|
}).change();
|
2012-08-10 09:35:25 +00:00
|
|
|
|
2012-03-12 15:48:22 +00:00
|
|
|
});
|
2012-08-10 09:35:25 +00:00
|
|
|
|
2012-03-12 15:48:22 +00:00
|
|
|
jQuery('.show_options_if_checked').each(function(){
|
2012-08-10 09:35:25 +00:00
|
|
|
|
2012-03-12 15:48:22 +00:00
|
|
|
jQuery(this).find('input:eq(0)').change(function() {
|
2012-08-10 09:35:25 +00:00
|
|
|
|
2012-03-12 15:48:22 +00:00
|
|
|
if (jQuery(this).is(':checked')) {
|
|
|
|
jQuery(this).closest('fieldset, tr').nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option').show();
|
|
|
|
} else {
|
|
|
|
jQuery(this).closest('fieldset, tr').nextUntil( '.hide_options_if_checked, .show_options_if_checked', '.hidden_option').hide();
|
|
|
|
}
|
2012-08-10 09:35:25 +00:00
|
|
|
|
2012-03-12 15:48:22 +00:00
|
|
|
}).change();
|
2012-08-10 09:35:25 +00:00
|
|
|
|
2012-03-12 15:48:22 +00:00
|
|
|
});
|
2012-03-12 09:25:06 +00:00
|
|
|
|
2012-08-10 09:35:25 +00:00
|
|
|
jQuery('input#woocommerce_demo_store').change(function() {
|
|
|
|
if (jQuery(this).is(':checked')) {
|
|
|
|
jQuery('#woocommerce_demo_store_notice').closest('tr').show();
|
|
|
|
} else {
|
|
|
|
jQuery('#woocommerce_demo_store_notice').closest('tr').hide();
|
|
|
|
}
|
|
|
|
}).change();
|
|
|
|
|
2011-11-28 15:50:19 +00:00
|
|
|
});
|