* @param {string} url * @return {string}
(url)
| 168 | * @return {string} |
| 169 | */ |
| 170 | resolveUrl_(url) { |
| 171 | if (!this.a_) { |
| 172 | this.a_ = this.win.document.createElement('a'); |
| 173 | } |
| 174 | this.a_.href = url; |
| 175 | return this.a_.href; |
| 176 | } |
| 177 | |
| 178 | closeSidebar() { |
| 179 | if (this.sidebarCloseButton_) { |