📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-07-06 19:02:07
📂
/ (Root)
/
home
/
jisrilmk
/
public_html
/
candy.jisr.link
📍 /home/jisrilmk/public_html/candy.jisr.link
🔄 Refresh
✏️
Editing: sound.js
Writable
function sound(src, loop = false) { this.sound = document.createElement("audio"); this.sound.src = src; this.sound.setAttribute("preload", "auto"); this.sound.setAttribute("controls", "none"); if (loop) this.sound.setAttribute("loop", "true"); this.sound.style.display = "none"; document.body.appendChild(this.sound); this.play = function(){ this.sound.play(); } this.stop = function(){ this.sound.pause(); } }
💾 Save Changes
❌ Cancel