()
| 239 | } |
| 240 | |
| 241 | function scrollToSaved() { |
| 242 | if(localStorage.getItem('scrollTop')) { |
| 243 | document.getElementsByTagName('body')[0].scrollTop = parseInt(localStorage.getItem('scrollTop')); |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | function scrollTopTween(scrollTop) { |
| 248 | return function() { |
nothing calls this directly
no outgoing calls
no test coverage detected