specimenTools
specimenTools copied to clipboard
[loadFonts] optionally avoid duplicate XHRs for same files; closes #28
Supersedes 1969828 in PR #28 by @kontur.
@kontur you can now do something like this:
// Note: I don't mind where you put `globalCache`,
// this is just a really global example.
var globalCache = window.xhrFontCache;
if(!globalCache)
globalCache = window.xhrFontCache = {};
loadFontsFromUrl(pubsub, fontFiles, globalCache)
Sorry, I didn't test this! I'm waiting for feedback before merging.
I'll try check this out this week/weekend, thanks for this new approach.
Only got around to testing this now, but all works great. Thanks for the review and addition.