11 lines
278 B
JavaScript
11 lines
278 B
JavaScript
import AttributeValues from './AttributeValues';
|
|
import ProductAttributes from './ProductAttributes';
|
|
|
|
if ($('#attribute-values-wrapper').length !== 0) {
|
|
new AttributeValues();
|
|
}
|
|
|
|
if ($('#product-attributes-wrapper').length !== 0) {
|
|
new ProductAttributes();
|
|
}
|