UNPKG

@nguyenmv2/buy-button

Version:

BuyButton.js allows merchants to build Shopify interfaces into any website

11 lines (9 loc) 392 B
import Updater from '../updater'; import Product from '../components/product'; export default class ModalUpdater extends Updater { updateConfig(config) { super.updateConfig(config); this.component.product = new Product(this.component.productConfig, this.component.props); return this.component.product.init(this.component.model).then(() => this.component.view.resize()); } }