Skip to content

Instantly share code, notes, and snippets.

View farnscosnippet's full-sized avatar

FarnsCo Snippets farnscosnippet

View GitHub Profile
@farnscosnippet
farnscosnippet / gist:4590408
Last active June 8, 2016 17:29
CSS: Image Replacement
.ir {
border: 0;
font: 0/0 a;
text-shadow: none;
color: transparent;
background-color: transparent;
}
@farnscosnippet
farnscosnippet / gist:4590402
Last active June 8, 2016 17:29
JS: Sexy PubSub
// Works in modern browswers + IE9, but Modernizr has a polyfill baked in for function.bind.
// Hat tip Paul Irish
var o = $( {} );
$.subscribe = o.on.bind(o);
$.unsubscribe = o.off.bind(o);
$.publish = o.trigger.bind(o);