(options = {})
| 1483 | // |
| 1484 | // } |
| 1485 | superInitHTML(options = {}) { |
| 1486 | Object.keys(options).forEach(key => this.options[key] = options[key]); |
| 1487 | this.base = this.parent.append('div') |
| 1488 | .classed(this.css_name, true); |
| 1489 | } |
| 1490 | /** |
| 1491 | * Has to be called as last call in subclass constructor. |
| 1492 | * @param {{}} options |
no outgoing calls
no test coverage detected