| Server IP : 219.234.31.115 / Your IP : 216.73.217.134 Web Server : Apache System : Linux ebs-140924 5.10.0-30-amd64 #1 SMP Debian 5.10.218-1 (2024-06-01) x86_64 User : vndaystarftp ( 67432) PHP Version : 7.3.33 Disable Function : link,symlink,passthru,exec,system,shell_exec,proc_open,popen,pcntl_exec,socket_bind,stream_socket_server,pcntl_fork,pcntl_rfork MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/wwwroot/vndaystarftp/wwwroot/wp-content/plugins/auxin-elements/admin/assets/js/solo/ |
Upload File : |
// serialize the form to JSON
jQuery.fn.serializeObject=function(){"use strict";var a={},b=function(b,c){var d=a[c.name];"undefined"!=typeof d&&d!==null?Array.isArray(d)?d.push(c.value):a[c.name]=[d,c.value]:a[c.name]=c.value};return jQuery.each(this.serializeArray(),b),a};
(function( $ ) {
"use strict";
$(function(){
var $feedback_popup = $('.aux-feedback-notice'),
$theme_menu = $('.toplevel_page_auxin-welcome');
// skip if feedback popup is not present
if( ! $feedback_popup.length ){
return;
}
// apply animation and position to popup
var $feedback_popup_top_offset = $theme_menu.length ? $theme_menu.offset().top -20 : '130';
$theme_menu.addClass('aux-highlight-focus');
$feedback_popup.css('top', $feedback_popup_top_offset ).removeClass('aux-not-animated');
// highlight selected rating
$feedback_popup.find('.aux-rate-cell').on( 'click', function(){
$('.aux-feedback-notice .aux-rate-cell').removeClass('checked');
$(this).addClass('checked');
});
$feedback_popup.find('input[name="theme_rate"]').on('change', function(){
var rateValue = $(this).val(),
$status_progress = $('.aux-sending-status'),
$conditional_sections = $('.aux-conditional-section');
$status_progress.removeClass('aux-hide');
$conditional_sections.addClass('aux-disappear');
$.ajax({
url: auxin.ajaxurl,
type: "post",
data: {
form : $('.aux-popup-feedback-form').serializeObject(),
action : 'send_feedback' // the ajax handler,
}
}).done( function( response ){
if ( response.success ) {
$status_progress.addClass('aux-hide');
if ( rateValue > 8 ) {
$('.aux-rate-on-market').removeClass('aux-disappear');
} else {
$('.aux-feedback-detail').removeClass('aux-disappear');
}
}
});
});
$('.aux-close-form:not(.btn-submit)').on('click', function(){
$.ajax({
url: auxin.ajaxurl,
type: 'post',
data: {
action: 'aux-remove-feedback-notice',
form : $('.aux-popup-feedback-form').serializeObject(),
}
}).done(function(response){
$('.aux-feedback-notice').remove();
});
});
$('.aux-close-form.btn-submit').on('click', function(){
$.ajax({
url: auxin.ajaxurl,
type: 'post',
data: {
action: 'send_feedback',
form : $('.aux-popup-feedback-form').serializeObject(),
}
}).done(function(response){
$('.aux-feedback-notice').remove();
});
});
$('.aux-remind-later').on('click', function(){
$.ajax({
url: auxin.ajaxurl,
type: 'post',
data: {
action: 'remind_feedback',
form : $('.aux-popup-feedback-form').serializeObject()
}
});
$('.aux-feedback-notice').remove();
});
})
})( jQuery );