17 Zeilen
520 B
JavaScript
17 Zeilen
520 B
JavaScript
/// disablejump.js
|
|
(function () {
|
|
function fakescroll() {
|
|
console.debug("Tried to scroll using absolute coords", arguments);
|
|
}
|
|
function fakescrollintoview() {
|
|
console.debug("Tried to scroll to element:", this);
|
|
}
|
|
window.scroll(0, 0);
|
|
|
|
window.scroll = fakescroll;
|
|
window.scrollBy = fakescroll;
|
|
window.scrollByLines = fakescroll;
|
|
window.scrollByPages = fakescroll;
|
|
HTMLElement.prototype.scrollIntoView = fakescrollintoview;
|
|
console.debug("Jump disabled");
|
|
})();
|