mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
65 lines
1.8 KiB
JavaScript
65 lines
1.8 KiB
JavaScript
jQuery(document).ready(function() {
|
|
|
|
|
|
jQuery(document.body).on('click', '#um_add_review_love', function (e) {
|
|
jQuery(this).parents('#um_start_review_notice').hide();
|
|
jQuery('.um_hidden_notice[data-key="love"]').show();
|
|
});
|
|
|
|
|
|
jQuery(document.body).on('click', '#um_add_review_good', function (e) {
|
|
jQuery(this).parents('#um_start_review_notice').hide();
|
|
jQuery('.um_hidden_notice[data-key="good"]').show();
|
|
});
|
|
|
|
|
|
jQuery(document.body).on('click', '#um_add_review_bad', function (e) {
|
|
jQuery(this).parents('#um_start_review_notice').hide();
|
|
jQuery('.um_hidden_notice[data-key="bad"]').show();
|
|
});
|
|
|
|
|
|
jQuery(document.body).on('click', '.um_review_link', function (e) {
|
|
jQuery(this).parents('.um-admin-notice').find( '.notice-dismiss' ).trigger('click');
|
|
});
|
|
|
|
|
|
jQuery(document.body).on('click', '.um_secondary_dimiss', function (e) {
|
|
jQuery(this).parents('.um-admin-notice').find( '.notice-dismiss' ).trigger('click');
|
|
});
|
|
|
|
|
|
jQuery(document.body).on( 'click', '.um-admin-notice.is-dismissible .notice-dismiss', function(e) {
|
|
var notice_key = jQuery(this).parents('.um-admin-notice').data('key');
|
|
|
|
wp.ajax.send( 'um_dismiss_notice', {
|
|
data: {
|
|
key: notice_key,
|
|
nonce: um_admin_scripts.nonce
|
|
},
|
|
success: function( data ) {
|
|
return true;
|
|
},
|
|
error: function( data ) {
|
|
um_admin_dismiss_notice_fallback( notice_key );
|
|
return false;
|
|
}
|
|
});
|
|
});
|
|
|
|
|
|
});
|
|
|
|
/**
|
|
* Dismiss fallback of ajax request
|
|
*/
|
|
function um_admin_dismiss_notice_fallback( notice_key ) {
|
|
var href_index = "";
|
|
if ( window.location.href.indexOf("?") > -1 ) {
|
|
href_index = window.location.href + "&";
|
|
} else {
|
|
href_index = window.location.href + "?";
|
|
}
|
|
window.location.href = href_index + "um_dismiss_notice=" + notice_key + "&um_admin_nonce=" + um_admin_scripts.nonce;
|
|
}
|