Old question, but still hard to find an answer to it.
The only way I could find to prevent AcceptJSUI from scrolling was to remove the window.scrollTo()
function before the AcceptJS.UI script was loaded.
window.scrollTo = function(y, x) {
console.log("prevented scroll to " + x + ", " + y);
};