(cb)
| 34 | return window.innerHeight || document.documentElement.clientHeight; |
| 35 | }; |
| 36 | var requestAnimationFrame = function (cb) { |
| 37 | setTimeout(function () { |
| 38 | requestAnimationFrameDoer(cb); |
| 39 | }, 4); |
| 40 | }; |
| 41 | |
| 42 | var fixture = document.getElementById('fixture'); |
| 43 | if (!fixture) { |