
Reviewers: xymostech Reviewed By: xymostech Differential Revision: http://phabricator.benalpert.com/D38
11 lines
254 B
JavaScript
11 lines
254 B
JavaScript
window.onload = function() {
|
|
var input = document.getElementById("input");
|
|
var math = document.getElementById("math");
|
|
|
|
MJLite.process(input.value, math);
|
|
|
|
input.oninput = function() {
|
|
MJLite.process(input.value, math);
|
|
};
|
|
};
|