Sha256: 5c43311233ec7f6feed9e8bcf94a5a3b915214823d72f6fefab869ee929b2b04
Contents?: true
Size: 618 Bytes
Versions: 19
Compression:
Stored size: 618 Bytes
Contents
//= require social_stream/callback SocialStream.Follow = (function(SS, $, undefined){ var callback = new SS.Callback(); var initButtons = function(){ $(".following-button").mouseenter(function(){ $(this).hide(); $(this).siblings(".unfollow-button").show(); }); $(".unfollow-button").mouseleave(function(){ $(this).hide(); $(this).siblings(".following-button").show(); }); $(".unfollow-button").hide(); } callback.register('index', initButtons); $(function(){ SocialStream.Follow.index(); }); return callback.extend({ }); })(SocialStream, jQuery);
Version data entries
19 entries across 19 versions & 2 rubygems