UNPKG

bootstrap-shopify-theme

Version:

A free [**Shopify Theme**](https://github.com/maxvien/bootstrap-shopify-theme) built with [**Bootstrap**](https://getbootstrap.com/), [BEM](http://getbem.com/), [Theme Tools](https://shopify.dev/tools/themes), [Swiper](https://swiperjs.com/), [Gulp](https

20 lines (17 loc) 650 B
import $ from 'jquery'; $('#show-main-tab').on('click', () => { $('.template-customer-login__tab').each((index, tab) => { $(tab).removeClass('template-customer-login__tab--active'); if ($(tab).hasClass('template-customer-login__tab--main')) { $(tab).addClass('template-customer-login__tab--active'); } }); }); $('#show-recovery-tab').on('click', () => { $('.template-customer-login__tab').each((index, tab) => { $(tab).removeClass('template-customer-login__tab--active'); if ($(tab).hasClass('template-customer-login__tab--recovery')) { $(tab).addClass('template-customer-login__tab--active'); } }); });