Created
August 31, 2015 12:25
-
-
Save onefriendaday/8e5058542751922b2711 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function ($) { | |
$(document).ready(function () { | |
if (['#download-container', '#video-container'].indexOf(window.location.hash) > -1 || window.location.hash.indexOf('video-play') > -1) { | |
if (window.location.hash.indexOf('video-play') > -1) { | |
var container = $('#video-container'); | |
} else { | |
var container = $(window.location.hash); | |
} | |
$(container).show(); | |
$('html, body').animate({ | |
scrollTop: container.position().top | |
}, 500); | |
var hash = window.location.hash; | |
var vid = hash.substring(12); | |
if (vid) { | |
$('.image a[href$="' + vid + '"]').click(); | |
} | |
} | |
}); | |
}(jQuery)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment