| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php namespace rtens\domin\delivery\web\renderers; |
||
| 39 | public function headElements($value) { |
||
| 40 | return [ |
||
| 41 | new Element('script', [], [' |
||
| 42 | var scrolled = true; |
||
| 43 | |||
| 44 | var keepScrolling = setInterval(function () { |
||
| 45 | scrolled = true; |
||
| 46 | window.scrollTo(0,document.body.scrollHeight); |
||
| 47 | }, 100); |
||
| 48 | |||
| 49 | window.addEventListener("scroll", function () { |
||
| 50 | if (!scrolled) { |
||
| 51 | clearInterval(keepScrolling); |
||
| 52 | } |
||
| 53 | scrolled = false; |
||
| 54 | }); |
||
| 55 | ']) |
||
| 56 | ]; |
||
| 57 | } |
||
| 58 | } |