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
// bling.js | |
// | |
// fork of https://gist.github.com/Gwash3189/98922b1078c4327dd0dd | |
// which is a fork of https://gist.github.com/paulirish/12fb951a8b893a454b32 | |
window.$ = document.querySelectorAll.bind(document) | |
Node.prototype.on = window.on = function(name, fn) { | |
var _this = this; |