try to take over the world!
// ==UserScript==
// @name JIRA Hidn Empty Sprint
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author happyeddie
// @include */RapidBoard.jspa*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function hideEmptySprint() {
console.log("1");
setTimeout(hideEmptySprint, 300);
$('div.ghx-no-issues').not('.js-empty-list').parents('.ghx-backlog-container').hide();
}
hideEmptySprint();
})();