Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BradleyJohnson/a782410740645afbe0951c217806762e to your computer and use it in GitHub Desktop.
Save BradleyJohnson/a782410740645afbe0951c217806762e to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Highlight no responses
// @namespace https://support.heroku.com/
// @version 0.1
// @description Highlight no responses
// @author Jon McCartie
// @include https://support.heroku.com/tags/*
// @grant none
// ==/UserScript==
$('.row.ticket').each(function(index, value) {
if (!$(value).data('first-responded-at')) {
$(value).addClass("bg-info");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment