(options)
| 41 | } |
| 42 | |
| 43 | constructor (options) { |
| 44 | super(...arguments) |
| 45 | if ((options != null ? options.instant : undefined) || this.instant) { this.className = this.className.replace(' fade', '') } |
| 46 | if ((options != null ? options.closeButton : undefined) != null) { this.closeButton = options.closeButton } |
| 47 | if (options != null ? options.modalWidthPercent : undefined) { this.modalWidthPercent = options.modalWidthPercent } |
| 48 | if (this.options == null) { this.options = {} } |
| 49 | if ((options != null ? options.trapsFocus : undefined) != null) { this.trapsFocus = options.trapsFocus } |
| 50 | } |
| 51 | |
| 52 | getRenderData (c) { |
| 53 | c = super.getRenderData(c) |
nothing calls this directly
no outgoing calls
no test coverage detected