generated from boboko/starter
13 lines
427 B
JavaScript
13 lines
427 B
JavaScript
import { Controller } from '@hotwired/stimulus'
|
|
|
|
// The review count sits next to the star rating, outside the tabs markup —
|
|
// too far apart in the DOM for a plain data-action, hence the outlet.
|
|
export default class extends Controller {
|
|
static outlets = ['tabs']
|
|
|
|
activate() {
|
|
this.tabsOutlet.activate('reviews')
|
|
this.tabsOutlet.element.scrollIntoView({ block: 'start', behavior: 'smooth' })
|
|
}
|
|
}
|