Skip to content

Instantly share code, notes, and snippets.

@pfrenssen
Created January 6, 2016 09:57
Show Gist options
  • Save pfrenssen/7347b8a930593747e759 to your computer and use it in GitHub Desktop.
Save pfrenssen/7347b8a930593747e759 to your computer and use it in GitHub Desktop.
Greasemonkey script for Jira Agile keyboard accessibility
// ==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