Initial Commit

This commit is contained in:
2024-02-08 12:07:49 -07:00
parent 5813b1109f
commit 43077b57ed
5471 changed files with 682195 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<!-- JavaScript for select all -->
<script type="text/javascript">
$(document).ready(function() {
$(".play-tone").change(function() {
var playtone = $(this).val();
var sound = new Howl({
src: ['<?php echo BASE_URL_ORIG;?>/'+playtone+'.mp3', '<?php echo BASE_URL_ORIG;?>/'+playtone+'.ogg', '<?php echo BASE_URL_ORIG;?>/'+playtone+'.wav']
});
// Finally play the sound, also on mobiles
sound.play();
});
});
ls.main_url = "<?php echo BASE_URL_ADMIN;?>";
ls.orig_main_url = "<?php echo BASE_URL_ORIG;?>";
ls.main_lang = "<?php echo JAK_LANG;?>";
</script>