Skip to content

Instantly share code, notes, and snippets.

@jangxx
Last active November 7, 2018 17:10
Show Gist options
  • Save jangxx/7a0d2022086fe802001edcd4bdab766f to your computer and use it in GitHub Desktop.
Save jangxx/7a0d2022086fe802001edcd4bdab766f to your computer and use it in GitHub Desktop.
Fix the layout on moves.rwth-aachen.de
// ==UserScript==
// @name MOVES Layout Fix
// @namespace https://literalchaos.de
// @version 0.1
// @description Disables overflow: hidden on the MOVES main content
// @author jangxx
// @match https://moves.rwth-aachen.de/teaching/*
// @grant none
// @downloadURL https://gist.github.com/jangxx/7a0d2022086fe802001edcd4bdab766f/raw/layout_fix.user.js
// ==/UserScript==
(function() {
'use strict';
window.addEventListener("load", () => {
document.querySelector("#content").style.overflow = "visible";
})
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment