jellekralt / Responsive-Tabs

Responsive Tabs is a jQuery plugin that provides responsive tab functionality. The tabs transform to an accordion when it reaches a CSS breakpoint. You can use this plugin as a solution for displaying tabs elegantly on desktop, tablet and mobile.
http://jellekralt.github.io/Responsive-Tabs/
MIT License
531 stars 228 forks source link

Not open first tab directly on mobile devices #157

Open jengi77 opened 4 years ago

jengi77 commented 4 years ago

When scrollToAccordion is set to true you jump directly to the open tab on mobile devices. So a check was added to only open the first tab when the actual device is not a mobile.

steinhaug commented 2 years ago

Well, shouldn't the syntax here be:

} else if (!window.matchMedia('(max-width: 646px)').matches) {

you wrote:

} else (!window.matchMedia('(max-width: 646px)').matches) {