blackboardfix

blackboardfix Commit Details


Date:2018-01-23 11:21:38 (6 years 10 months ago)
Author:Natalie Adams
Branch:master
Commit:005f0bfb151faeea3110df90d8d3597e47de0f98
Parents: 4688dfb9eb5de0e8d1e385e376390e192a58de3c
Message:Displaying 50 students in grade center instead of default of 10

Changes:

File differences

blackboardfix.user.js
1111
1212
1313
14
15
16
1714
15
16
1817
1918
2019
......
2423
2524
2625
26
27
28
29
30
31
32
33
34
35
36
// ==/UserScript==
// License: MIT
//
// If you feel this script was useful please send BTC donations to this address:
// 1kqfr9hYPHTwGdMev9b538sSeyLa5h4FR
//
// This fixes the horriable "boxing" in the grade center
var style=document.createElement('style');
style.type='text/css';
var cssStyle = '.gbtable tbody tr td, .gbtable tbody tr th, .gbtable_header th, .gbtable thead th { padding: 0px !important; height: 0px !important; }';
style.appendChild(document.createTextNode(cssStyle));
}
document.getElementsByTagName('head')[0].appendChild(style);
// end fix
// This will display all students rather than the default of 10
if (window.location.href.includes("gradebook/do/instructor/enterGradeCenter")) {
jQuery(document).ready(function () {
jQuery("#openRowEditing")[0].click();
jQuery("#numRows").val("50");
jQuery("#submitRowEditing")[0].click();
});
}
//

Archive Download the corresponding diff file

Branches

Number of commits:
Page rendered in 0.04981s using 14 queries.