mirror of
https://github.com/tensorflow/haskell.git
synced 2024-11-14 23:19:43 +01:00
28 lines
567 B
JavaScript
28 lines
567 B
JavaScript
|
|
||
|
var highlight = function (on) {
|
||
|
return function () {
|
||
|
var links = document.getElementsByTagName('a');
|
||
|
for (var i = 0; i < links.length; i++) {
|
||
|
var that = links[i];
|
||
|
|
||
|
if (this.href != that.href) {
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
if (on) {
|
||
|
that.classList.add("hover-highlight");
|
||
|
} else {
|
||
|
that.classList.remove("hover-highlight");
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
window.onload = function () {
|
||
|
var links = document.getElementsByTagName('a');
|
||
|
for (var i = 0; i < links.length; i++) {
|
||
|
links[i].onmouseover = highlight(true);
|
||
|
links[i].onmouseout = highlight(false);
|
||
|
}
|
||
|
};
|