google-fonts-cli
Version:
a quick way to add a google font to your project
13 lines (12 loc) • 434 B
JavaScript
var B = require("boots-utils");
var FontCollection = require("../../src/font-collection.js");
var FONTCACHE;
global.BooTemplate = require("boo-templates");
global.getFonts = function getFonts(path, next) {
B.ajax.loadJSON(path, function(data) {
var fonts = new FontCollection(data);
if (next) next(fonts);
}, function(err) {
console.log("Getting font data failed. Here's the error: ", err);
});
};