Created
November 13, 2012 08:54
-
-
Save youpy/4064721 to your computer and use it in GitHub Desktop.
dotjs script to display glitched webfont
This file contains hidden or 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
// only supports Safari | |
// https://github.com/wfarr/dotjs.safariextension | |
if($.browser.safari) { | |
var link = $('<link />'). | |
attr('href', 'http://dl.dropbox.com/u/334064/sketches/webfont_1/styles_min.css'). | |
attr('type', 'text/css'). | |
attr('rel', 'stylesheet'); | |
$('head').append(link); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment