(locationString: string, scrolling: boolean = false)
| 6 | |
| 7 | // Constructor |
| 8 | constructor(locationString: string, scrolling: boolean = false){ // Not activated by default |
| 9 | this.setLocationString(locationString); |
| 10 | this.setScrolling(scrolling); |
| 11 | } |
| 12 | |
| 13 | // Public methods |
| 14 | public render(renderArea: RenderArea): void{ |
nothing calls this directly
no test coverage detected