1// Mock WebFont, so we don't need to include the real one (when it's not used during testing) 2(function() { 3'use strict'; 4this.WebFont = { 5 load: function(config) { 6 if (config.active) { 7 // If we have a callback, call it soon 8 setTimeout(config.active, 1); 9 } 10 }, 11}; 12}).call(this); 13