Permalink
Fetching contributors…
Cannot retrieve contributors at this time
8 lines (8 sloc) 220 Bytes
function UpdateNoteStyle(id) {
var theNote = document.getElementById(id);
theNote.style.fontSize = "150%";
}
function ReturnNoteStyle(id) {
var theNote = document.getElementById(id);
theNote.style.fontSize = "inherit";
}