// source --> https://centralclinic.science/wp-content/themes/mag_child/includes/js/wpfc-control.js?ver=6.9.4 
"use strict";
jQuery(function($){
	
	if ( get_ua() == "sp" || get_ua() == "tab" ) {
		console.log('mobile');
		
		const $index_wrapper = document.querySelector('.index_wrapper');
		const $index_wrapper_side = document.querySelector('.index_wrapper-side');
		
		if ( $index_wrapper || $index_wrapper_side ) {
			
			console.log('ajax call');
			$.ajax({
				url: WPFC_CONTROL_AJAX.api,
				type: 'post',
				data: {
					  // 呼び出すアクション名
					  action: WPFC_CONTROL_AJAX.action,
					  // アクションに対応するnonce
					  nonce: WPFC_CONTROL_AJAX.nonce,
					  // ▼ その他 渡したいデータがあれば適時 ▼
					  // post_id: 12345,
					  // name: 'name'
				}
			})
			.done(function( res ) {
				console.log( res );
				location.reload();
				console.log( 'ajax call done' );
			})
			.fail(function( jqXHR, textStatus, errorThrown ) {
				console.log( jqXHR, textStatus, errorThrown, arguments);
			});
		}
	}
});