profile-site/main.js

19 lines
631 B
JavaScript
Raw Normal View History

2021-01-14 17:46:52 -05:00
let backButton = document.getElementById("back");
2021-01-14 14:40:08 -05:00
2021-01-14 17:46:52 -05:00
if (window.location.href != "https://meetsquirrel.github.io" || "https://meetsquirrel.github.io#meet") {
backButton.style.opacity = "1";
2021-01-14 14:40:08 -05:00
}
2021-01-14 17:46:52 -05:00
function next() {
if (window.location.href == "https://meetsquirrel.github.io/index.html#vegetable-dash") {
document.location = "#vegetable-dash";
}
}
function last() {
if (window.location.href == "https://meetsquirrel.github.io/index.html#vegetable-dash" || "file:///D:/Documents/GitHub/meetsquirrel.github.io/index.html#vegetable-dash") {
document.location = "#meet";
backButton.style.opacity = "0";
}
2021-01-14 14:40:08 -05:00
}