mirror of
https://github.com/zyllian/pipefall.git
synced 2025-01-18 03:32:55 -08:00
14 lines
265 B
JavaScript
14 lines
265 B
JavaScript
|
(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);
|
||
|
})();
|