()
| 17 | #initialZoom; |
| 18 | /* jshint ignore:end */ |
| 19 | get row() { |
| 20 | /* jshint ignore:start */ |
| 21 | return this.#hasConnected ? +this.#initialRow : +this.getAttribute('row'); |
| 22 | /* jshint ignore:end */ |
| 23 | } |
| 24 | set row(val) { |
| 25 | /* jshint ignore:start */ |
| 26 | if (this.#hasConnected) return; // Ignore after connection |
nothing calls this directly
no test coverage detected