Latest Publications

window.addEventListener(‘DOMContentLoaded’, function(e) {
document.getElementById(“facultyworks”).height = “1000px”;
});
window.addEventListener(“message”, function(e) {
if (e.origin.includes(“faculty.works”) || e.origin.includes(“localhost”) || e.origin.includes(“127.0.0.1”)) {
if (e.data === “scrollUp”) {
window.scrollTo({top: 0})
return
}
document.getElementById(“facultyworks”).height = parseInt(e.data);
}
});