Sha256: 9e3c968851e21b4e3bd38bf02bbcd8582dc88e2398b5298f473af7d0b08e6965
Contents?: true
Size: 273 Bytes
Versions: 3
Compression:
Stored size: 273 Bytes
Contents
import { Controller } from "stimulus" export default class extends Controller { static targets = ["message"] close(event) { const notice = document.getElementById("notice") while (notice.firstChild) { notice.removeChild(notice.firstChild) } } }
Version data entries
3 entries across 3 versions & 1 rubygems