all.min.js 340 B

12345678910111213
  1. document.addEventListener("DOMContentLoaded", () => {
  2. document.querySelectorAll(".js-back").forEach(el => {
  3. el.addEventListener("click", e => {
  4. e.preventDefault();
  5. if (document.referrer && history.length > 1) {
  6. history.back();
  7. } else {
  8. window.location.href = "index.html";
  9. }
  10. });
  11. });
  12. });