()
| 114 | } |
| 115 | |
| 116 | handlePopState_() { |
| 117 | const newPage = this.win.location.pathname; |
| 118 | log('Pop state: ', newPage, this.currentPage_); |
| 119 | if (newPage != this.currentPage_) { |
| 120 | this.navigateTo(newPage); |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * @param {string} path |
nothing calls this directly
no test coverage detected