8 Zeilen
228 B
JavaScript
8 Zeilen
228 B
JavaScript
/// disablejump.js
|
|
(function() {
|
|
document.scrollingElement.scrollIntoView();
|
|
HTMLElement.prototype.scrollIntoView = function() {
|
|
console.debug("Tried to scroll");
|
|
};
|
|
console.debug("Jump disabled");
|
|
})();
|