-
Notifications
You must be signed in to change notification settings - Fork 206
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get Open Sans font from Google CDN instead of local hosting (and include extended character sets) #3556
get Open Sans font from Google CDN instead of local hosting (and include extended character sets) #3556
Conversation
…ude extended character sets)
Retargeting of #3369 |
assigned to @nicolaasmatthijs for review |
@sathomas : Looks like there is a merge conflict here. |
merge conflicts fixed, back to @nicolaasmatthijs for review |
Moving this to bootstrap as it fixes a bug in there |
Note to folks regarding this PR. I just checked and Vietnamese is listed as a requested language for OAE at crowdin.net. If/when we actually have a Vietnamese translation, we'll need to revisit this issue to add support for Vietnamese characters in the font. (Presently they're not included to minimize download time.) |
@stuartf, @mrvisser I will definitely need some oversight (if not outright assistance). Digging through the grunt files, we're using
There is an option to
And now, perhaps, you can already see the problem;
or
Any suggestions would be most welcome. |
@@ -93,7 +93,7 @@ module.exports = function(grunt) { | |||
'optimize': 'uglify', | |||
'preserveLicenseComments': false, | |||
'optimizeCss': 'standard', | |||
'cssImportIgnore': null, | |||
'cssImportIgnore': '//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,300,600,700&subset=latin,cyrillic-ext,latin-ext,greek-ext', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be good to make a TODO here referencing your open PR r.js
to change to a more robust regexp match.
Over to @nicolaasmatthijs for official review |
@@ -40,3 +40,7 @@ grunt test | |||
``` | |||
|
|||
Note that Hilary and its dependencies should be installed and running on your system before the tests can be run successfully. | |||
|
|||
## Local Development |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm going to move this to just below ## Installing OAE
, as it seems better placed there
Assigning to @sathomas for investigation |
Adjusted build and it looks to be working locally for me; time for another @nicolaasmatthijs review |
Looks good. Merged. Verified that this fixes #3617 as well. |
get Open Sans font from Google CDN instead of local hosting (and include extended character sets)