Your IP : 216.73.216.171


Current Path : /home/ereika83/www/wp-content/plugins/wpmu-dev-seo/includes/assets/js/
Upload File :
Current File : /home/ereika83/www/wp-content/plugins/wpmu-dev-seo/includes/assets/js/wds-admin-health.js

;(function ($) {
	$(init);

	function init() {
		$(document)
			.on('submit', '#wds-reporting-form, #wds-settings-form', save_health_settings)
		;
	}

	function save_health_settings(e) {
		e.preventDefault();
		e.stopPropagation();

		var $button = $('.sui-box-footer .sui-button.sui-button-blue'),
			$reporting_form = $('#wds-reporting-form'),
			$settings_form = $('#wds-settings-form'),
			data = $settings_form.serialize() + '&' + $reporting_form.serialize();

		$button.addClass('sui-button-onload');

		$.post(ajaxurl + '?' + data, {
			action: 'wds-save-health-settings',
			_wds_nonce: Wds.get('health', 'nonce'),
		}).done(function () {
			window.location.href = location.href.replace(location.hash, "") + '&' + $.param({
				"settings-updated": "true"
			});
		});
	}
})(jQuery);