2014-03-19 23:02:54 +00:00
|
|
|
jQuery( function( $ ) {
|
2012-07-17 14:09:18 +00:00
|
|
|
|
|
|
|
// Orderby
|
2014-03-19 23:02:54 +00:00
|
|
|
$( '.woocommerce-ordering' ).on( 'change', 'select.orderby', function() {
|
|
|
|
$( this ).closest( 'form' ).submit();
|
2012-07-17 14:09:18 +00:00
|
|
|
});
|
2012-12-06 15:44:22 +00:00
|
|
|
|
2012-07-17 14:09:18 +00:00
|
|
|
// Target quantity inputs on product pages
|
2014-03-19 23:02:54 +00:00
|
|
|
$( 'input.qty:not(.product-quantity input.qty)' ).each( function() {
|
|
|
|
var min = parseFloat( $( this ).attr( 'min' ) );
|
2012-12-06 15:44:22 +00:00
|
|
|
|
2014-03-19 23:02:54 +00:00
|
|
|
if ( min && min > 0 && parseFloat( $( this ).val() ) < min ) {
|
|
|
|
$( this ).val( min );
|
2012-07-17 14:09:18 +00:00
|
|
|
}
|
|
|
|
});
|
2014-01-31 02:44:17 +00:00
|
|
|
});
|