Skip to content

Instantly share code, notes, and snippets.

@joshuaclayton
Created January 29, 2009 14:28
Show Gist options
  • Select an option

  • Save joshuaclayton/54556 to your computer and use it in GitHub Desktop.

Select an option

Save joshuaclayton/54556 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name JIRA Issue Dock Badge
// @namespace http://fluidapp.com
// @description Displays JIRA Issue within dock badge
// @author Josh Clayton
// ==/UserScript==
(function () {
if (window.fluid) {
window.fluid.dockBadge = window.document.title.match(/\[.(\w{3,4}\-\d+)]/)[1].replace(/-/, '');
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment