NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name GorillaScript site // @namespace danielezecchin.it // @include https://ckknight.github.io/gorillascript/* // @version 1 // @grant none // ==/UserScript== $('#try-link').off().click(function () { $('#try').toggle() }); $('#repl-link').off().click(function () { $('#repl').toggle() }); var tocLabel = document.getElementById('toc-label'); tocLabel.remove(); var toc = document.getElementById('toc'); toc.insertBefore( tocLabel, toc.firstChild );