File "ucp-admin-pointers.js"

Full Path: /home/attunedd/public_html/wp-content/plugins/under-construction-page/js/ucp-admin-pointers.js
File size: 848 bytes
MIME-type: text/plain
Charset: utf-8

/*
 * UnderConstructionPage
 * Backend GUI pointers
 * (c) WebFactory Ltd, 2015 - 2023
 */


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');
  });
});