first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/*
* UnderConstructionPage
* Backend GUI pointers
* (c) WebFactory Ltd, 2015 - 2019
*/
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');
});
});