File: /www/wwwroot/www.molinta.com/wp-content/themes/context-blog/inc/theme-info/js/about.js
( function( $ ) {
'use strict';
$(document).ready(function () {
$('.recommended-action-button').on('click',function() {
var id = $(this).attr('id');
var action = $(this).data('action');
var nonce = $(this).data('nonce');
$.ajax({
type : 'GET',
dataType : 'html',
url : colornewsmagazineAboutObject.ajaxurl,
data : {
'action' : 'pt_about_action_dismiss_recommended_action',
'id' : id,
'_wpnonce' : nonce,
'todo' : action
},
success : function () {
location.reload();
}
});
});
});
} )( jQuery );