focusin for IE Closes #866.
This commit is contained in:
parent
a537b2c18f
commit
e5f93e448b
|
@ -508,7 +508,7 @@ jQuery(document).ready(function($) {
|
|||
$.uniform.update();
|
||||
}
|
||||
|
||||
}).focus(function(){
|
||||
}).bind( 'focusin', function() {
|
||||
|
||||
check_variations( $(this).attr('name') );
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -40,7 +40,7 @@ global $woocommerce, $product, $post;
|
|||
<?php endif;?>
|
||||
</select> <?php
|
||||
if ( sizeof($attributes) == $loop ) {
|
||||
echo '<a class="reset_variations" href="#reset">'.__('Reset selection', 'woocommerce').'</a>';
|
||||
echo '<a class="reset_variations" href="#reset">'.__('Clear selection', 'woocommerce').'</a>';
|
||||
}
|
||||
?></td>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in New Issue