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