pipefall/index.js

14 lines
265 B
JavaScript
Raw Normal View History

2023-04-23 11:01:25 -07:00
(function () {
"use strict";
const pipefall = document.getElementById("pipefall");
const now = document.getElementById("play-now");
const play = () => {
console.log("pipefall!");
pipefall.play();
};
now.addEventListener("click", play);
})();