Sha256: 18864ca29228787a57a5fdbeeecc8d6b7244a7779b32c75954eb0e38a22f84e9

Contents?: true

Size: 1.02 KB

Versions: 20

Compression:

Stored size: 1.02 KB

Contents

//= require social_stream/timeline
//= require social_stream/audio
//= require social_stream/video

SocialStream.Documents.Timeline = (function(SS, $, undefined) {
  var initVideos = function() {
    $(".video-container").hide();

    $(".video .play_over").click(function(){
      var video = $(this).closest(".video");

      video.find(".thumb").hide();
      video.find(".text").hide();
      video.find(".jp-video-play").hide();
      video.find(".video-container").show();
      video.find(".jp-jplayer").jPlayer("play", 0);
    });
  };

  SocialStream.Timeline.callbackRegister('show',
                                         SocialStream.Audio.show,
                                         SocialStream.Video.show,
                                         initVideos);

  SocialStream.Timeline.callbackRegister('update',
                                         SocialStream.Audio.show,
                                         SocialStream.Video.show,
                                         initVideos);
})(SocialStream, jQuery);

Version data entries

20 entries across 20 versions & 2 rubygems

Version Path
social_stream-2.2.2 documents/app/assets/javascripts/social_stream/documents.timeline.js
social_stream-documents-2.2.1 app/assets/javascripts/social_stream/documents.timeline.js
social_stream-2.2.1 documents/app/assets/javascripts/social_stream/documents.timeline.js
social_stream-2.2.0 documents/app/assets/javascripts/social_stream/documents.timeline.js
social_stream-documents-2.2.0 app/assets/javascripts/social_stream/documents.timeline.js
social_stream-2.1.1 documents/app/assets/javascripts/social_stream/documents.timeline.js
social_stream-2.1.0 documents/app/assets/javascripts/social_stream/documents.timeline.js
social_stream-documents-2.1.0 app/assets/javascripts/social_stream/documents.timeline.js
social_stream-2.0.4 documents/app/assets/javascripts/social_stream/documents.timeline.js
social_stream-documents-2.0.4 app/assets/javascripts/social_stream/documents.timeline.js
social_stream-2.0.3 documents/app/assets/javascripts/social_stream/documents.timeline.js
social_stream-documents-2.0.3 app/assets/javascripts/social_stream/documents.timeline.js
social_stream-2.0.2 documents/app/assets/javascripts/social_stream/documents.timeline.js
social_stream-documents-2.0.2 app/assets/javascripts/social_stream/documents.timeline.js
social_stream-2.0.1 documents/app/assets/javascripts/social_stream/documents.timeline.js
social_stream-documents-2.0.1 app/assets/javascripts/social_stream/documents.timeline.js
social_stream-2.0.0 documents/app/assets/javascripts/social_stream/documents.timeline.js
social_stream-documents-2.0.0 app/assets/javascripts/social_stream/documents.timeline.js
social_stream-2.0.0.beta3 documents/app/assets/javascripts/social_stream/documents.timeline.js
social_stream-documents-2.0.0.beta3 app/assets/javascripts/social_stream/documents.timeline.js