This file contains 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
<!-- | |
For full control, the embed shepherd can be dynamically loaded from another script, and the inline script executed | |
after it's loaded. | |
--> | |
<script src="http://fast.wistia.com/static/embed_shepherd-v1.js"></script> | |
<script> | |
wistiaEmbeds.onFind(function(video) { | |
video.bind("conversion", function(type, email) { | |
if (/(pre|mid|post)-roll/.test(type)) { | |
// Using jsonp is a simple way to allow cross-domain data sharing |
This file contains 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
<span style="font-size:15px;">My smaller text</span> |
This file contains 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
this is a test |
This file contains 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() { | |
if (this.isWorking()) { | |
clapYourHands(); // bottles and cans | |
} | |
}()) |
This file contains 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
var pausedDueToVisibility = []; | |
function pauseAllActiveWistiaVideos() { | |
window._wq = window._wq || []; | |
window._wq.push({ | |
id: "_all", | |
function (video) { | |
if (video.state() === "playing") { | |
pausedDueToVisibility.push(video); | |
video.pause(); |
OlderNewer