Sha256: 28b89978bfc166a7dfda6afd8b453cf49083181f6a8b4c0ca17adeb8325e1330
Contents?: true
Size: 285 Bytes
Versions: 30
Compression:
Stored size: 285 Bytes
Contents
import { Controller } from "@hotwired/stimulus" // simple controller to hide/show the filter modal export default class extends Controller { static targets = ["content"] toggle(_event) { this.contentTargets.forEach(node => { node.toggleAttribute("hidden") }) } }
Version data entries
30 entries across 30 versions & 1 rubygems