Skip to content

Instantly share code, notes, and snippets.

@Naatan
Last active December 8, 2016 16:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Naatan/6e9d3fc13fffccd382ed6e9b71bdaa22 to your computer and use it in GitHub Desktop.
Save Naatan/6e9d3fc13fffccd382ed6e9b71bdaa22 to your computer and use it in GitHub Desktop.
Fix github sidebar
// ==UserScript==
// @name Fix github sidebar
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Fix github's horrible sidebar "improvements"
// @author Naatan
// @match https://github.com/Komodo/KomodoEdit/issues/*
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==
(function() {
'use strict';
$(".sidebar-labels").next().hide();
$(".sidebar-labels").after($(".sidebar-milestone"));
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment