You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've discovered that I also get this error when I click on an accordion header to open or close an accordion panel: (line 178 throws error)
173 // Toggle the tab when the associated panel is toggled
174 collapse.on('shown.bs.collapse', function (e) {
175
176 if (fakewaffle.currentPosition === 'panel') {
177 // Activate current tabs
178 var current = $(e.target).context.id.replace(/collapse-/g, '#');
179 $('a[href="' + current + '"]').tab('show');
180
181 // Update the content with active
182 var panelGroup = $(e.currentTarget).closest('.panel-group.responsive');
183 $(panelGroup).find('.panel-body').removeClass('active');
184 $(e.currentTarget).find('.panel-body').addClass('active');
185 }
186
186 });
Standard bootstrap markup allows for tab anchors to utilize either the href attribute or a data-target attribute.
Responsive tabs will not work without the href attribute.
The text was updated successfully, but these errors were encountered: