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
| /*=============================================== | |
| = Auto play youtube video = | |
| ===============================================*/ | |
| var videosrc=$("iframe").attr("src")+"&autoplay=1"; | |
| $("iframe").attr("src",videosrc); | |
| /*===== End of Auto play youtube video ======*/ |
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
| /*================================================ | |
| = Anchor tag scroll hijack = | |
| ================================================*/ | |
| // Select all links with hashes | |
| $('a[href*="#"]') | |
| // Remove links that don't actually link to anything | |
| .not('[href="#"]') | |
| .not('[href="#0"]') | |
| .click(function(event) { | |
| // On-page links |
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
| /************************** | |
| * Movie controls | |
| *************************/ | |
| if($("#lens-video").length) { | |
| var moviecontainer = document.getElementById("lens-video"), | |
| movie = moviecontainer.querySelector("video"), | |
| controls = moviecontainer.querySelector("span"); | |
| movie.removeAttribute("controls"); | |
| controls.style.display = "block"; |
NewerOlder