
Summary:
Uploaded the OTFs from eab3322d
to fontsquirrel with the following config:
```
{"mode":"expert","formats":["ttf","woff","eotz"],"tt_instructor":"default","fix_vertical_metrics":"Y","fix_gasp":"xy","add_spaces":"Y","add_hyphens":"Y","fallback":"none","fallback_custom":"100","options_subset":"none","subset_custom":"","subset_custom_range":"","css_stylesheet":"stylesheet.css","filename_suffix":"","emsquare":"2048","spacing_adjustment":"0"}
```
Now we have this beauty in IE8:
{F213}
and it looks similar in Chrome. Now I guess we just need square roots so we can stop disseminating the wrong quadratic formula.
Reviewers: xymostech
Reviewed By: xymostech
Differential Revision: http://phabricator.benalpert.com/D43
17 lines
383 B
JavaScript
17 lines
383 B
JavaScript
window.onload = function() {
|
|
var input = document.getElementById("input");
|
|
var math = document.getElementById("math");
|
|
|
|
reprocess();
|
|
|
|
if ("oninput" in input) {
|
|
input.addEventListener("input", reprocess, false);
|
|
} else {
|
|
input.attachEvent("onkeyup", reprocess);
|
|
}
|
|
|
|
function reprocess() {
|
|
MJLite.process(input.value, math);
|
|
}
|
|
};
|