| 1 |
/* Banhammer Settings */ |
| 2 |
|
| 3 |
jQuery(document).ready(function($){ |
| 4 |
|
| 5 |
$('.banhammer-reset-options').on('click', function(e){ |
| 6 |
e.preventDefault(); |
| 7 |
$('.banhammer-dialog').dialog('destroy'); |
| 8 |
var link = this; |
| 9 |
var button_names = {}; |
| 10 |
button_names[banhammer_alert_options_true] = function() { window.location = link.href; } |
| 11 |
button_names[banhammer_alert_options_false] = function() { $(this).dialog('close'); } |
| 12 |
$('<div class="banhammer-dialog">'+ banhammer_alert_options_message +'</div>').dialog({ |
| 13 |
title: banhammer_alert_options_title, |
| 14 |
buttons: button_names, |
| 15 |
modal: true, |
| 16 |
width: 350 |
| 17 |
}); |
| 18 |
}); |
| 19 |
|
| 20 |
}); |
| 21 |
|