Domain: antoinekatan.com
Server Adress: 10.127.20.23
privdayz.com
(function($) {
'use strict';
var like = {};
like.mkdfOnDocumentReady = mkdfOnDocumentReady;
$(document).ready(mkdfOnDocumentReady);
/**
* All functions to be called on $(document).ready() should be in this function
**/
function mkdfOnDocumentReady() {
mkdfLikes();
}
function mkdfLikes() {
$(document).on('click','.mkdf-like', function() {
var likeLink = $(this),
id = likeLink.attr('id'),
type;
if ( likeLink.hasClass('liked') ) {
return false;
}
if (typeof likeLink.data('type') !== 'undefined') {
type = likeLink.data('type');
}
var dataToPass = {
action: 'quart_mikado_like',
likes_id: id,
type: type
};
var like = $.post(mkdfGlobalVars.vars.mkdfAjaxUrl, dataToPass, function( data ) {
likeLink.html(data).addClass('liked').attr('title', 'You already like this!');
});
return false;
});
}
})(jQuery);
