()
| 92 | } |
| 93 | |
| 94 | private stopScrolling(): void{ |
| 95 | // Set the scroll to 0 |
| 96 | $("html").scrollTop(0); |
| 97 | |
| 98 | // Reset css for our location string |
| 99 | $(this.locationString).css({ |
| 100 | 'position' : 'relative', |
| 101 | 'overflow-x' : 'hidden' |
| 102 | }); |
| 103 | |
| 104 | // Reset css for around the status bar |
| 105 | $("#aroundStatusBar").css({ |
| 106 | 'position' : 'relative', |
| 107 | 'top' : 'auto', |
| 108 | 'left' : 'auto', |
| 109 | 'right' : 'auto', |
| 110 | 'height' : 'auto' |
| 111 | }); |
| 112 | } |
| 113 | } |
no test coverage detected