Button initial state

This commit is contained in:
Mike Jolley 2015-10-28 14:27:02 +00:00
parent 6a64f3ba7a
commit f7a065fb53
2 changed files with 22 additions and 15 deletions

View File

@ -13,13 +13,25 @@
$product_variations = $form.data( 'product_variations' ),
$use_ajax = $product_variations === false,
$xhr = false,
$reset_variations = $form.find( '.reset_variations' );
$reset_variations = $form.find( '.reset_variations' ),
template = wp.template( 'variation-template' ),
button_template = wp.template( 'variation-add-to-cart-template' ),
unavailable_template = wp.template( 'unavailable-variation-template' ),
$single_variation_wrap = $form.find( '.single_variation_wrap' ),
$variations_button = $form.find( '.variations_button' );
// Unbind any existing events
$form.unbind( 'check_variations update_variation_values found_variation' );
$form.find( '.reset_variations' ).unbind( 'click' );
$form.find( '.variations select' ).unbind( 'change focusin' );
// Output button intial state
$variations_button.html( button_template( {
variation_id: 0,
min_qty: '',
max_qty: ''
} ) );
// Bind new events to form
$form
@ -145,14 +157,9 @@
// Show single variation details (price, stock, image)
.on( 'found_variation', function( event, variation ) {
var template = wp.template( 'variation-template' ),
button_template = wp.template( 'variation-add-to-cart-template' ),
unavailable_template = wp.template( 'unavailable-variation-template' ),
$single_variation_wrap = $form.find( '.single_variation_wrap' ),
$sku = $product.find( '.product_meta' ).find( '.sku' ),
var $sku = $product.find( '.product_meta' ).find( '.sku' ),
$weight = $product.find( '.product_weight' ),
$dimensions = $product.find( '.product_dimensions' ),
$variations_button = $form.find( '.variations_button' ),
purchasable = true;
// Display SKU

File diff suppressed because one or more lines are too long