(function($){
$(document).ready(function(){
var comparePageUrl="https://stendy.vsimosvita.com/favorites/";
function addCompareLink($favoriteBtn){
var $link=$favoriteBtn.siblings(".post-favorites");
if($link.length){
$link.show();
}}
function removeCompareLink($favoriteBtn){
var $link=$favoriteBtn.siblings(".post-favorites");
if($link.length){
$link.hide();
}}
$(document).on("favorites-user-favorites-loaded", function(){
$(".simplefavorite-button.active").each(function(){
addCompareLink($(this));
});
});
$(document).on("favorites-updated-single", function(event, favorites, post_id, site_id, status){
var $button=$('.simplefavorite-button[data-postid="' + post_id + '"]');
if(!$button.length) return;
if(status==="active"){
addCompareLink($button);
}else if(status==="inactive"){
removeCompareLink($button);
}});
});
})(jQuery);