2023-05-16 10:50:42 +08:00

63 lines
1.9 KiB
JavaScript
Executable File

$(function()
{
$('.page-actions a.loadInModal').each(function()
{
var href = $(this).attr('href');
if(href.indexOf('onlybody=yes') < 0) href = href + (href.indexOf('?') > 0 ? '&' : '?') + 'onlybody=yes';
$(this).removeAttr('href').attr('data-rel', href);
});
$(document).off('click', '.deleteOvertime');
$(document).off('click', '.reviewPass');
href = $('a.deleteOvertime').attr('href');
$('a.deleteOvertime').attr('href', '###').attr('data-href', href);
$(document).on('click', '.deleteOvertime', function()
{
if(confirm(lang.confirmDelete))
{
$(this).text(lang.deleting);
$.getJSON($(this).attr('data-href'), function(data)
{
if(data.result == 'success')
{
if(data.locate) return location.href = data.locate;
return location.reload();
}
else
{
alert(data.message);
if(selecter.parents('#ajaxModal').size()) return $.reloadAjaxModal(1200);
return location.reload();
}
});
}
return false;
});
href = $('a.reviewPass').attr('href');
$('a.reviewPass').attr('href', '###').attr('data-href', href);
$(document).on('click', '.reviewPass', function()
{
if(confirm(confirmReview.pass))
{
var selecter = $(this);
$.getJSON(selecter.attr('data-href'), function(data)
{
if(data.result == 'success')
{
if(data.locate) return location.href = data.locate;
return location.reload();
}
else
{
alert(data.message);
return location.reload();
}
});
}
return false;
});
})