MSV FM

dot.antimicrobial@66.96.161.157: ~ $
Path : /hermes/bosweb/b2038/corykierstead.com/wp-content/plugins/assets/js/
File Upload :
Current < : /hermes/bosweb/b2038/corykierstead.com/wp-content/plugins/assets/js/helper.js

/* ==========================================================
 * helper.js
 * ==========================================================
 * Copyright 2015 Thomas Griffin.
 * https://thomasgriffin.io
 * ========================================================== */
jQuery(document).ready(function($){
	$(document).on('OptinMonsterPreOptin', function(event, optin, object){
		$.each(omapi_localized.slugs, function(i, v) {

			if ( i !== optin.optin.replace('-', '_') ) {
				return;
			}

			if ( ! v.mailpoet ) {
				return;
			}

			// Send a request to force optin to work even if no provider is set.
			var data 		 = optin.optin_data;
			data.no_provider = true;
			object.setProp('optin_data', data);

			// Now make an ajax request to make the optin locally.
			data.action = 'mailpoet';
			data.nonce  = omapi_localized.nonce;
			data.optin  = optin.original_optin;
			$.post(omapi_localized.ajax, data, function(){}, 'json');

			return false;
		});
	});
});