Skip to content

Instantly share code, notes, and snippets.

View dodok1's full-sized avatar

Jozef Kotlar dodok1

View GitHub Profile
@dodok1
dodok1 / gist:7925037
Last active December 22, 2019 15:19 — forked from anonymous/gist:7925024
Improved ordering and full JQL as tooltip
<script type='text/javascript'>
var refreshJqlHistoryPane = function() {
var localHistory = localStorage.getItem('jqlHistory');
if(localHistory){
var history = JSON.parse(localHistory);
var historyEntries = history.map(function(jql){
var display = jql;
if(display.length > 25){
display = display.substr(0,22) + "...";
}