jshinted and coding standards see #4680
This commit is contained in:
parent
a7e72545ed
commit
60738e52fe
|
@ -1,34 +1,34 @@
|
|||
jQuery(function($){
|
||||
jQuery( function( $ ) {
|
||||
|
||||
// woocommerce_params is required to continue, ensure the object exists
|
||||
if (typeof woocommerce_params === "undefined")
|
||||
if ( typeof woocommerce_params === 'undefined' )
|
||||
return false;
|
||||
|
||||
$('#add_payment_method')
|
||||
$( '#add_payment_method' )
|
||||
|
||||
/* Payment option selection */
|
||||
|
||||
.on( 'click init_add_payment_method', '.payment_methods input.input-radio', function() {
|
||||
if ( $('.payment_methods input.input-radio').length > 1 ) {
|
||||
var target_payment_box = $('div.payment_box.' + $(this).attr('ID') );
|
||||
if ( $(this).is(':checked') && ! target_payment_box.is(':visible') ) {
|
||||
$('div.payment_box').filter(':visible').slideUp(250);
|
||||
if ( $(this).is(':checked') ) {
|
||||
$('div.payment_box.' + $(this).attr('ID') ).slideDown(250);
|
||||
if ( $( '.payment_methods input.input-radio' ).length > 1 ) {
|
||||
var target_payment_box = $( 'div.payment_box.' + $( this ).attr( 'ID' ) );
|
||||
if ( $( this ).is( ':checked' ) && ! target_payment_box.is( ':visible' ) ) {
|
||||
$( 'div.payment_box' ).filter( ':visible' ).slideUp( 250 );
|
||||
if ( $( this ).is( ':checked' ) ) {
|
||||
$( 'div.payment_box.' + $( this ).attr( 'ID' ) ).slideDown( 250 );
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$('div.payment_box').show();
|
||||
$( 'div.payment_box' ).show();
|
||||
}
|
||||
})
|
||||
|
||||
// Trigger initial click
|
||||
.find('input[name=payment_method]:checked').click();
|
||||
.find( 'input[name=payment_method]:checked' ).click();
|
||||
|
||||
$('#add_payment_method').submit(function(){
|
||||
$('#add_payment_method').block({message: null, overlayCSS: {background: '#fff url(' + woocommerce_params.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', backgroundSize: '16px 16px', opacity: 0.6}});
|
||||
$( '#add_payment_method' ).submit( function() {
|
||||
$( '#add_payment_method' ).block({ message: null, overlayCSS: { background: '#fff url(' + woocommerce_params.plugin_url + '/assets/images/ajax-loader.gif) no-repeat center', backgroundSize: '16px 16px', opacity: 0.6 } });
|
||||
});
|
||||
|
||||
$('body').trigger('init_add_payment_method');
|
||||
$( 'body' ).trigger( 'init_add_payment_method' );
|
||||
|
||||
});
|
||||
|
|
|
@ -1 +1 @@
|
|||
jQuery(function(a){return"undefined"==typeof woocommerce_params?!1:(a("#add_payment_method").on("click init_add_payment_method",".payment_methods input.input-radio",function(){if(a(".payment_methods input.input-radio").length>1){var b=a("div.payment_box."+a(this).attr("ID"));a(this).is(":checked")&&!b.is(":visible")&&(a("div.payment_box").filter(":visible").slideUp(250),a(this).is(":checked")&&a("div.payment_box."+a(this).attr("ID")).slideDown(250))}else a("div.payment_box").show()}).find("input[name=payment_method]:checked").click(),a("#add_payment_method").submit(function(){a("#add_payment_method").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_params.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",backgroundSize:"16px 16px",opacity:.6}})}),void a("body").trigger("init_add_payment_method"))});
|
||||
jQuery(function(e){if(typeof woocommerce_params==="undefined")return false;e("#add_payment_method").on("click init_add_payment_method",".payment_methods input.input-radio",function(){if(e(".payment_methods input.input-radio").length>1){var t=e("div.payment_box."+e(this).attr("ID"));if(e(this).is(":checked")&&!t.is(":visible")){e("div.payment_box").filter(":visible").slideUp(250);if(e(this).is(":checked")){e("div.payment_box."+e(this).attr("ID")).slideDown(250)}}}else{e("div.payment_box").show()}}).find("input[name=payment_method]:checked").click();e("#add_payment_method").submit(function(){e("#add_payment_method").block({message:null,overlayCSS:{background:"#fff url("+woocommerce_params.plugin_url+"/assets/images/ajax-loader.gif) no-repeat center",backgroundSize:"16px 16px",opacity:.6}})});e("body").trigger("init_add_payment_method")})
|
Loading…
Reference in New Issue