Created
January 6, 2016 09:57
-
-
Save pfrenssen/7347b8a930593747e759 to your computer and use it in GitHub Desktop.
Greasemonkey script for Jira Agile keyboard accessibility
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 Agile keyboard accessibility | |
// @namespace https://gist.github.com/pfrenssen | |
// @version 1.0 | |
// @description Improve keyboard accessibility for Jira Agile boards | |
// @author Pieter Frenssen | |
// @include https://*/secure/RapidBoard.jspa* | |
// @include https://*/**/secure/RapidBoard.jspa* | |
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js | |
// @grant none | |
// ==/UserScript== | |
/* jshint -W097 */ | |
'use strict'; | |
// Make the close button on the detail pane accessible. | |
waitForKeyElements(".ghx-detail-close", function (jNode) { | |
jNode.wrap('<a class="js-detailclose"></a>'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment