13 lines
325 B
JavaScript
13 lines
325 B
JavaScript
import { Controller} from '@hotwired/stimulus'
|
|
|
|
export default class extends Controller {
|
|
|
|
static targets = [ 'indicator' ]
|
|
static classes = [ 'hidden' ]
|
|
|
|
toggle() {
|
|
this.indicatorTarget.classList.remove(this.hiddenClass)
|
|
this.element.scrollIntoView({ block: 'start', behavior: 'smooth'})
|
|
}
|
|
}
|