Christian Spanring
Christian Spanring
I just spent my morning on this, reproducing the issue with a MCVE based on the "Centered Scrolling" example. It seems that changing `position: fixed` to `position: absolute` on `.centered-scrolling-wrapper`...
I was just seeing the same issue. Trying to hunt down the error, led me to finally downgrading node.js from 0.12 to 0.10.36, which solved the issue. FWIW, tests for...
@triselectif `const` is part of ES6, which is not supported by node 0.10.x. You would need to replace the failing dependency with a pre-ES6 version. [qs](https://github.com/hapijs/qs) dependency of `connect` in...