Fix JS code in htmlgen.py

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2017-12-21 02:19:25 +01:00
parent b510c6b96a
commit ac532961df
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ function ome(bit) {
if (!(b in highlight_cache)) {
el = document.getElementById("bit" + b);
highlight_cache[b] = el.bgColor;
el.bgColor = "#ffffff"
el.bgColor = "#ffffff";
highlight_bits.push(b);
}
}