mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-06 03:38:39 +00:00
Create node server to replace 'make watch'
Reviewers: xymostech Reviewed By: xymostech Differential Revision: http://phabricator.benalpert.com/D38
This commit is contained in:
10
static/main.js
Normal file
10
static/main.js
Normal file
@@ -0,0 +1,10 @@
|
||||
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);
|
||||
};
|
||||
};
|
Reference in New Issue
Block a user