Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
initSelect = (selectEl) => {
if (!selectEl) return;
const select = new MDCSelect(selectEl);
this.select = select;
};
initSelect = ele => ele && this.componentInstances.push(new MDCSelect(ele));
initSlider = ele => ele && this.componentInstances.push(new MDCSlider(ele));
initSelect = (selectEl) => {
if (!selectEl) return;
this.select = new MDCSelect(selectEl);
}