(id)
| 208 | |
| 209 | class Dialog { |
| 210 | constructor(id) { |
| 211 | this.$el = $(id); |
| 212 | this.$el.querySelectorAll('[close]').forEach(el => el.addEventListener('click', e => this.hide())) |
| 213 | this.$autoFocus = this.$el.querySelector('[autofocus]'); |
| 214 | } |
| 215 | |
| 216 | show() { |
| 217 | this.$el.setAttribute('show', 1); |