17 lines
442 B
JavaScript
17 lines
442 B
JavaScript
/** @odoo-module **/
|
|
|
|
import { WebsiteSale } from '@website_sale/js/website_sale';
|
|
|
|
WebsiteSale.include({
|
|
/**
|
|
* Toggles the add to cart button depending on the possibility of the
|
|
* current combination.
|
|
*
|
|
* @override
|
|
*/
|
|
_toggleDisable: function ($parent, isCombinationPossible) {
|
|
this._super(...arguments);
|
|
$parent.find('a.a-submit').toggleClass('disabled', !isCombinationPossible);
|
|
},
|
|
});
|