HEX
Server: LiteSpeed
System: Linux premium235.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: beaupptk (733)
PHP: 8.1.33
Disabled: NONE
Upload Files
File: //home/beaupptk/armaan.shop/wp-content/plugins/loginizer/assets/js/social-admin.js
jQuery(document).ready(function() {
	jQuery(".loginizer-social-wrapper").sortable({
		handle : '.loginizer-social-grip',
		placeholder : 'loginizer-sortable-placeholder',
		stop : loginizer_sort_social
	});
});

// Used to sort and save the order of Social Login Apps.
function loginizer_sort_social(event, ui) {
	var target= jQuery(event.target),
	sortables = target.find('.loginizer-social-provider'),
	
	sorted_arr = sortables.map(function() {
		return jQuery(this).data('provider');
	}).get();

	// To show the saving order text.
	let saving_order = jQuery(ui.item).find('.loginizer-social-saving-order');
	saving_order.show();

	jQuery.ajax({
		method : 'POST',
		url : loginizer_social.ajax_url,
		data : {
			security: loginizer_social.nonce,
			order: sorted_arr,
			action: 'loginizer_social_order' 
		},
		success: function(res){
			saving_order.hide();
		}}
	);
}