* pause * Pauses this system * When paused, the UrlHashSystem will not respond to changes or emit events.
()
| 156 | * When paused, the UrlHashSystem will not respond to changes or emit events. |
| 157 | */ |
| 158 | pause() { |
| 159 | this._paused = true; |
| 160 | this._currHash = null; |
| 161 | this.deferredUpdateHash.cancel(); |
| 162 | this.deferredUpdateTitle.cancel(); |
| 163 | } |
| 164 | |
| 165 | |
| 166 | /** |
no outgoing calls
no test coverage detected