This commit is contained in:
e.arrahn
2021-05-27 17:11:44 +08:00
parent 6801af71e5
commit f530ca2f6f
7 changed files with 66 additions and 42 deletions
+17 -2
View File
@@ -131,8 +131,23 @@
$('#linkz').text(data.namateller + " Pohon Kelulusan");
$("#linkz").attr("href", "{{ url('kelulusan') }}");
audio.play();
audio.muted = false;
//audio.play();
//audio.muted = false;
if(window.location.pathname === '/operasi/kelulusan')
{
location.reload();
}else{
audio.play();
audio.muted = false;
var countlagu = 1;
audio.onended = function() {
if(countlagu <= 3){
countlagu++;
this.play();
}
}
}
const Toast = Swal.mixin({
toast: true,