Sha256: 3b32e55c99cf51608934ed244fe1b009cf9a955fd12a9204dcfaf00e0bc09670

Contents?: true

Size: 412 Bytes

Versions: 4

Compression:

Stored size: 412 Bytes

Contents

SocialStream.Events.Poster = (function(SS, $, undefined){
	var init = function(){
		$('.event_poster_update').hide();

		$('.event_poster').hover(
			function(){
				$(this).find(".event_poster_update").fadeIn("slow");
			        
			},
			function(){
				$(this).find(".event_poster_update").fadeOut("slow");
			});
	}

	SS.Timeline.addInitCallback(init);

	return {
		init: init
	};

})(SocialStream, jQuery);

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
social_stream-0.23.2 events/app/assets/javascripts/social_stream.events.poster.js
social_stream-events-0.9.1 app/assets/javascripts/social_stream.events.poster.js
social_stream-0.23.1 events/app/assets/javascripts/social_stream.events.poster.js
social_stream-events-0.9.0 app/assets/javascripts/social_stream.events.poster.js