MSV FM

dot.antimicrobial@66.96.161.157: ~ $
Path : /hermes/bosweb/b1705/mmagma.com/wp-content/plugins/wp-force-ssl/js/
File Upload :
Current < : /hermes/bosweb/b1705/mmagma.com/wp-content/plugins/wp-force-ssl/js/wpfs-pointers.js

/*
 * WP Force SSL
 * Backend GUI pointers
 * (c) WebFactory Ltd, 2017 - 2022
 */

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

  $.each(wp_force_ssl_pointers, function(index, pointer) {
    if (index.charAt(0) == '_') {
      return true;
    }
    $(pointer.target).pointer({
        content: '<h3>WP Force SSL</h3><p>' + pointer.content + '</p>',
        pointerWidth: 380,
        position: {
            edge: pointer.edge,
            align: pointer.align
        },
        close: function() {
                $.get(ajaxurl, {
                    notice_name: index,
                    _ajax_nonce: wp_force_ssl_pointers._nonce_dismiss_pointer,
                    action: 'wpfs_dismiss_notice'
                });
        }
      }).pointer('open');
  });
});