Skip to content

Instantly share code, notes, and snippets.

View mikedemarais's full-sized avatar
💭
my life is dope and i do dope shit

Michael Demarais mikedemarais

💭
my life is dope and i do dope shit
View GitHub Profile
...
// test for font-face version to load via Data URI'd CSS
// Basically, load WOFF unless it's android's default browser, which needs TTF, or ie8-, which needs eot
var fonts = ns.files.css.fontsWOFF,
ua = win.navigator.userAgent;
// android webkit browser, non-chrome
if( ua.indexOf( "Android" ) > -1 && ua.indexOf( "like Gecko" ) > -1 && ua.indexOf( "Chrome" ) === -1 ){
fonts = ns.files.css.fontsTTF;
}