Created
September 23, 2009 22:28
-
-
Save rcarver/192350 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
// *** EXPERIMENTAL *** | |
// | |
// This is an experimental method to be notified when Typekit's fonts have loaded. | |
// | |
// It will almost certainly change! Please do not use this on a live site. Please | |
// do let us know what you think by forking this gist, contacting us at | |
// [email protected] or on Get Satisfaction - http://getsatisfaction.com/typekit | |
// | |
Typekit.load("your-kit-id", { | |
beforeLoad: function(data) { | |
// fonts are not loaded! | |
}, | |
afterLoad: function(data) { | |
// fonts are loaded! | |
} | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment