Created
January 29, 2009 14:28
-
-
Save joshuaclayton/54556 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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