Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 79bff4c1 authored by Scott Main's avatar Scott Main
Browse files

fix FF bug wrt scrolltop in video page

Change-Id: Ie48f9e457f6f873804933a7f2309a217810ebc89
parent 1e4cfd8e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -229,9 +229,8 @@ ul.videos span.tag.distribute {
function loadVideo(id, title, autoplay) {
  var url = '//www.youtube.com/v/' + id + '&rel=1&border=0&fs=1' + (autoplay?'&autoplay=1':'');
  swfobject.embedSWF(url, 'player', '704', '397', '9.0.0', false, false, {allowfullscreen: 'true'});
  $("#videoPlayerTitle").html("<h2>" + unescape(title) + "</h2>");
  $('body,html').animate({ scrollTop: 0 }, "slow");
  setTimeout(function(){$('#noplayer-message').show()}, 2000);
  $("body").animate({ scrollTop: 0 }, "slow");
}