diff --git a/blackboardfix.user.js b/blackboardfix.user.js index 3282b8c..eca775b 100644 --- a/blackboardfix.user.js +++ b/blackboardfix.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Blackboard fix // @namespace https://srchub.org -// @version 0.7 +// @version 0.8 // @description Fixes the grade center to actually be usable // @author Nathan Adams // @match https://lewisuniversity.blackboard.com/* @@ -46,6 +46,10 @@ if (window.location.href.includes("gradebook/do/instructor/enterGradeCenter")) { if (window.location.href.includes("assessment/do/gradeTest")) { jQuery(document).keydown(function (e) { + if (e.which == 66) { // b + jQuery("input[id^=points]").first().focus(); + e.preventDefault(); + } if (e.which == 78) { // n var ide = jQuery(":focus").attr("id").replace("points_", ""); jQuery("#" + ide).next().find("input[id^=points__]").focus();