bibhamrokhanpin/wp-content/__plugins/under-construction-page/js/ucp-admin-pointers.js
2024-04-10 17:46:06 +05:45

34 lines
815 B
JavaScript

/*
* UnderConstructionPage
* Backend GUI pointers
* (c) WebFactory Ltd, 2015 - 2022
*/
jQuery(document).ready(function($){
if (typeof ucp_pointers == 'undefined') {
return;
}
$.each(ucp_pointers, function(index, pointer) {
if (index.charAt(0) == '_') {
return true;
}
$(pointer.target).pointer({
content: '<h3>' + ucp.plugin_name + '</h3><p>' + pointer.content + '</p>',
position: {
edge: pointer.edge,
align: pointer.align
},
width: 320,
close: function() {
$.post(ajaxurl, {
pointer: index,
_ajax_nonce: ucp_pointers._nonce_dismiss_pointer,
action: 'ucp_dismiss_pointer'
});
}
}).pointer('open');
});
});