enableAppScroll at runtime

Is there any way to configure enableAppScroll at runtime?

This can be tricky.

The value itself is easy to change at runtime. It is in this variable:

NSB.enableAppScroll

The effect it has is in this code:

document.ontouchmove = function (e) {
    if (!NSB.enableAppScroll) e.preventDefault();
};

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.