Tengo el siguiente problema... Al hacer click tanto en 'Me Gusta' como en 'Ya no me gusta' (Haciendo click en la 'x' del botón) me detecta el evento del 'Ya no me gusta'.
Dejo del código aquí...
Código Javascript:
Ver original
<script> window.fbAsyncInit = function() { FB._https = true; FB.init({appId: 'XXXXXXXXXXX', status: true, cookie: true, xfbml: true, channelURL : "www.miweb.com"}); FB.Event.subscribe('edge.create', function(response) { alert('Me gusta'); }); FB.Event.subscribe('edge.remove', function(response) { alert('Ya no me gusta'); }); }; </script>
¿Alguna solución? Desde ya, muchas gracias...