Files
myep/assets/controllers/loading_controller.js
T
2025-02-28 10:06:09 +01:00

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'})
}
}