Created
November 1, 2013 16:36
-
-
Save maxme/7268080 to your computer and use it in GitHub Desktop.
This file contains 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
function reduce_tqr_time_font_size() { | |
var a = document.querySelectorAll("tr span"); | |
var i = 0; | |
for (i = 0; i < a.length; i++) { | |
a[i].setAttribute("style", "font-size: 0.7em"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment