(e)
| 239 | }, |
| 240 | |
| 241 | _levelClick(e) { |
| 242 | e.preventDefault(); |
| 243 | e.stopPropagation(); |
| 244 | this.setLayer(e.target.level); |
| 245 | currentLevel = getLevelNumber(e.target.level); |
| 246 | if (typeof update_hash === 'function') { |
| 247 | update_hash(); |
| 248 | } |
| 249 | redrawMarkers(); |
| 250 | }, |
| 251 | |
| 252 | finalize() { |
| 253 | const buttons = $(this._container).find('a'); |
nothing calls this directly
no test coverage detected