Skip to content

Instantly share code, notes, and snippets.

@onozaty
Last active August 29, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save onozaty/e42930cf7b9d1f7d2478 to your computer and use it in GitHub Desktop.
Save onozaty/e42930cf7b9d1f7d2478 to your computer and use it in GitHub Desktop.
Add accesskey on issue page by Redmine view customize plugin
// Path pattern: /issues/[0-9]+
// Type: JavaScript
$(function(){
$(".next-prev-links a:contains(\xab)").attr('accesskey', 'p');
$(".next-prev-links a:contains(\xbb)").attr('accesskey', 'n');
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment