You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
723 B
25 lines
723 B
(function(window, document) {
|
|
function showAll(button) {
|
|
parent = document.getElementById('highlight-container');
|
|
parent.classList.add("showing-all");
|
|
}
|
|
|
|
function showHighlights(button) {
|
|
parent = document.getElementById('highlight-container');
|
|
parent.classList.remove("showing-all");
|
|
}
|
|
|
|
function print() {
|
|
window.print();
|
|
}
|
|
|
|
document.addEventListener("click", function(event) {
|
|
if (event.target.matches(".show-all, .show-all *")) {
|
|
showAll(event.target);
|
|
} else if (event.target.matches(".show-highlights, .show-highlights *")) {
|
|
showHighlights(event.target);
|
|
} else if (event.target.matches("#print, #print *")) {
|
|
print();
|
|
}
|
|
});
|
|
})(window, document);
|
|
|