8manos / wc-variations-radio-buttons

Let your customers choose product variations using radio buttons instead of dropdowns.
https://wordpress.org/plugins/wc-variations-radio-buttons/
GNU General Public License v2.0
62 stars 34 forks source link

Can't clear the selection #9

Closed Sphinxxxx closed 8 years ago

Sphinxxxx commented 8 years ago

"Clear"ing the selection doesn't work, because it triggers a bug in the JS code. tmpb5e4 tmp

It's simple, you just need to add the "event" variable that the click handler uses to the handler's argument list:

.on( 'click', '.reset_variations', function( /*** ---> ***/ event /*** <--- ***/ ) {
    event.preventDefault();
    ...
Mantish commented 8 years ago

thanks for the heads-up @Sphinxxxx