HEX
Server: Apache
System: Linux intelligent-franklin.159-253-45-41.plesk.page 3.10.0-962.3.2.lve1.5.79.el7.x86_64 #1 SMP Wed Mar 15 09:10:44 UTC 2023 x86_64
User: sysuser_f (10029)
PHP: 7.3.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/3chukuk.com/httpdocs/wp-content/plugins/backup-1760131327/js/eps-admin-pointers.js
/*
 * EPS 301 Redirects
 * Backend GUI pointers
 * (c) WebFactory Ltd
 */


jQuery(document).ready(function($){
  if (typeof eps_pointers  == 'undefined') {
    return;
  }

  $.each(eps_pointers, function(index, pointer) {
    if (index.charAt(0) == '_') {
      return true;
    }
    $(pointer.target).pointer({
        content: '<h3>301 Redirects</h3><p>' + pointer.content + '</p>',
        position: {
            edge: pointer.edge,
            align: pointer.align
        },
        width: 320,
        close: function() {
                $.post(ajaxurl, {
                    pointer_name: index,
                    _ajax_nonce: eps_pointers._nonce_dismiss_pointer,
                    action: 'eps_dismiss_pointer'
                });
        }
      }).pointer('open');
  });
});