Skip to content

Instantly share code, notes, and snippets.

@nire0510
Created November 26, 2015 11:02
Show Gist options
  • Save nire0510/85e02739c578aa901739 to your computer and use it in GitHub Desktop.
Save nire0510/85e02739c578aa901739 to your computer and use it in GitHub Desktop.
Dynamically download and serve web-fonts from Google's repo for better performance
(function (window) {
'use strict';
// Global configuration for web-font:
window.WebFontConfig = {
google: {
families: [ 'Oxygen:700,400:latin' ]
},
timeout: 2000
};
// Create & inject Google's web font loader:
var wf = document.createElement("script");
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.async = 'true';
document.head.appendChild(wf);
})(window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment