UNPKG

@bigcommerce/stencil-utils

Version:

Utility library used by BigCommerce Stencil Framework themes

20 lines (16 loc) 399 B
import BaseHooks from './base'; export default class extends BaseHooks { /** * @Constructor */ constructor() { // call parent super(); this.optionsChange(); } optionsChange() { this.subscribe('change', '[data-product-option-change]', (event, target) => { this.emit('product-option-change', event, target); }); } }