Files
myep/assets/controllers/loading_controller.js
T

11 lines
249 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)
}
}