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
_.reduceRight( num.toString().split('').reverse(), function ( stack, next, i ) { return stack + ( i % 3 == 0 && i > 0 ? next + ',' : next ); }, '' ) |
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
var videos = [], | |
tag = document.createElement( 'script' ); | |
// Load the API | |
tag.src = "//www.youtube.com/iframe_api"; | |
var firstScriptTag = document.getElementsByTagName( 'script' )[0]; | |
firstScriptTag.parentNode.insertBefore( tag, firstScriptTag ); | |
// Enqueue new youtube video for loading and event tracking |
NewerOlder