11 Zeilen
306 B
JavaScript
11 Zeilen
306 B
JavaScript
/// disablejump.js
|
|
(function() {
|
|
window.scroll(0, 0);
|
|
HTMLElement.prototype.scrollIntoView = function() {
|
|
console.debug("Tried to scroll");
|
|
};
|
|
window.scoll = function() {
|
|
console.debug("Tried to scroll using absolute coords")
|
|
}
|
|
console.debug("Jump disabled");
|
|
})();
|