Skip to content

Instantly share code, notes, and snippets.

View allbinmani's full-sized avatar

origo allbinmani

  • Freelance
  • Sweden
View GitHub Profile
@allbinmani
allbinmani / bling.js
Created April 22, 2016 16:21 — forked from paulirish/bling.js
bling dot js
/* bling.js */
window.$ = document.querySelectorAll.bind(document);
Node.prototype.on = window.on = function (name, fn) {
this.addEventListener(name, fn);
}
NodeList.prototype.__proto__ = Array.prototype;