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
/x/==x |
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
// Load the SDK Asynchronously | |
(function(d){ | |
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0]; | |
if (d.getElementById(id)) {return;} | |
js = d.createElement('script'); js.id = id; js.async = true; | |
js.src = | |
('//' + /(www|apps)\.([\w\.]+\.)facebook\.com/.exec(document.referrer) | |
? RegExp.$2 + '.facebook.com/assets.php/en_US/' | |
: 'connect.facebook.net/en_US/') + | |
// the module to load |
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
// | |
// by Dmitry Soshnikov <[email protected]> | |
// MIT Style License | |
// see also: http://wiki.ecmascript.org/doku.php?id=strawman:iterators | |
// | |
// --------------------------------------- | |
// 1. Iteration via for-in loop | |
// --------------------------------------- |