29 lines
548 B
JavaScript
29 lines
548 B
JavaScript
/**
|
|
* OpenGraph Admin JavaScript
|
|
*
|
|
* Confirmation dialogs for batch cache operations.
|
|
*
|
|
* @package ROBOTSTXT_OG
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
(function($) {
|
|
'use strict';
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('a[href*="robotstxt_og_clear_cache"]').on('click', function(e) {
|
|
if (!confirm(robotstxt_og_admin.confirm_clear_cache)) {
|
|
e.preventDefault();
|
|
}
|
|
});
|
|
|
|
$('a[href*="robotstxt_og_resolve_all"]').on('click', function(e) {
|
|
if (!confirm(robotstxt_og_admin.confirm_resolve_all)) {
|
|
e.preventDefault();
|
|
}
|
|
});
|
|
|
|
});
|
|
|
|
})(jQuery);
|