| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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;
- }
|