Sayfada şöyle bir kod var belli süre sonunda işlemi iptal ediyor. Bunu durdumanın bir yolu varmı yoksa dururulamazmı
<script type="text/javascript">
function loadIntroductionModal() {
$('#introduction-modal').foundation('reveal', 'open');
}
function loadBookingSessionCountdown() {
G4.Session.Read('SERVERTIME', null, function (serverTime) {
if (serverTime != null) {
G4.Session.Read('bookingExpiry', null, function (data) {
if (data != null) {
var diff = parseFloat(data) - parseFloat(serverTime);
var date = new Date();
date.setMilliseconds(date.getMilliseconds() + diff);
$('#booking-session-countdown-container').show();
$('#booking-session-countdown').countdown({
until: date,
padZeroes: true,
format: 'MS',
compact: true,
onExpiry: function () {
$('#booking-session-expired').foundation('reveal', 'open');
}
});
}
});
} else {
$('#booking-session-expired').foundation('reveal', 'open');
}
});
}
(function ($) {
$(document).ready(function () {
//G4.Model.ApplyPartialBindings.push(loadIntroductio nModal);
G4.Model.ApplyPartialBindings.push(loadBookingSess ionCountdown);
});
})(jQuery);
</script>