index.js 185 B

12345678
  1. "use strict";
  2. /**
  3. * Redirect to appointment.html when page root is visited
  4. */
  5. window.addEventListener("load", function() {
  6. window.location.replace("/html/appointments.html");
  7. });