LiveStreet + Twitter embeds
HTML
<blockquote class="twitter-tweet" lang="en"><p>Celebrate colour with <a href="https://twitter.com/Adobe">@Adobe</a> and <a href="https://twitter.com/CreativeBloq">@Creativebloq</a> on 26 March: <a href="http://t.co/rnYm6760l0">http://t.co/rnYm6760l0</a> <a href="https://twitter.com/hashtag/inspiredbycolour?src=hash">#inspiredbycolour</a> <a href="http://t.co/EqYAr7T0V9">pic.twitter.com/EqYAr7T0V9</a></p>— ImagineFX Magazine (@imaginefx) <a href="https://twitter.com/imaginefx/status/580085615942897666">March 23, 2015</a></blockquote>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
JavaScript
Function.prototype.bind = function ( obj ) {
if ( typeof this !== "function" ) {
throw new TypeError("Function.prototype.bind - what is trying to be bound is not callable");
}
var slice = [].slice,
args = slice.call(arguments, 1),
self = this,
nop = function () {},
bound = function () {
return self.apply( this instanceof nop ? this : ( obj || {} ), args.concat( slice.call( arguments ) ) );
};
nop.prototype = this.prototype;
bound.prototype = new nop();
return bound;
};