mirror of
https://bitbucket.org/theswgsource/auth-site-1.2.git
synced 2026-01-17 00:04:55 -05:00
23 lines
389 B
JavaScript
23 lines
389 B
JavaScript
var AdminCP = {
|
|
init: function()
|
|
{
|
|
},
|
|
|
|
deleteConfirmation: function(element, message)
|
|
{
|
|
if(!element) return false;
|
|
confirmReturn = confirm(message);
|
|
if(confirmReturn == true)
|
|
{
|
|
form = $("<form />", { method: "post", action: element.href, style: "display: none;" });
|
|
$("body").append(form);
|
|
form.submit();
|
|
}
|
|
return false;
|
|
}
|
|
};
|
|
|
|
$(function()
|
|
{
|
|
AdminCP.init();
|
|
}); |