(value = !this.state.rippleDisabled)
| 208 | } |
| 209 | |
| 210 | toggleRippleDisabled(value = !this.state.rippleDisabled) { |
| 211 | this._rippleOptions.disabled = this.state.rippleDisabled = value; |
| 212 | setAppState(this.state); |
| 213 | } |
| 214 | |
| 215 | toggleDirection(value: Direction = this.state.direction === 'ltr' ? 'rtl' : 'ltr') { |
| 216 | if (value !== this._dir.value) { |
no test coverage detected