D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
mybf1
/
www
/
ja.bf1.my
/
wp-content
/
plugins
/
ecwid-shopping-cart
/
js
/
Filename :
landing.js
back
Copy
hide_on_loading = '.create-store-button, .create-store-have-account-question'; invisible_on_loading = '.create-store-have-account-link'; show_on_loading = '.create-store-loading, .create-store-loading-note'; hide_on_success = '.create-store-loading, .create-store-loading-note'; show_on_success = '.create-store-success, .create-store-success-note'; jQuery(document).ready(function(){ jQuery('.create-store-button').click(function() { if (ecwidParams.isWL) { location.href = ecwidParams.registerLink; return; } var $context = jQuery(this).closest('.ecwid-button'); jQuery(hide_on_loading + ', ' + invisible_on_loading, $context).fadeTo(150, .01).promise().done(function() { jQuery(hide_on_loading, $context).hide(); jQuery(invisible_on_loading, $context).css('visibility', 'hidden'); jQuery(show_on_loading, $context).fadeIn(300); }) jQuery.ajax(ajaxurl + '?action=ecwid_create_store', { success: function(result) { var html = result; jQuery(hide_on_success, $context).fadeTo(150, .01).promise().done(function() { jQuery(hide_on_success, $context).hide(); jQuery(show_on_success, $context).fadeIn(300); setTimeout(function() { location.href="admin.php?page=ec-store"; }, 1000); }) }, error: function() { window.location.href = ecwidParams.registerLink; } } ); }); }); switch_to_success = function() { }