(value = !this.state.strongFocusEnabled)
| 175 | } |
| 176 | |
| 177 | toggleStrongFocus(value = !this.state.strongFocusEnabled) { |
| 178 | this.state.strongFocusEnabled = value; |
| 179 | this._document.body.classList.toggle('demo-strong-focus', value); |
| 180 | setAppState(this.state); |
| 181 | } |
| 182 | |
| 183 | toggleZoneless(value = !this.isZoneless) { |
| 184 | this.state.zoneless = value; |
no test coverage detected