1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-19 06:52:02 +02:00
This commit is contained in:
Pomax
2015-12-31 16:50:21 -08:00
parent ff9abb8bfc
commit 6ac1f146f7
2 changed files with 4 additions and 19 deletions

View File

@@ -1,5 +1,6 @@
Dev instance of the rewrite for https://Pomax.github.io/bezierinfo
- Run dev version: `npm start`.
- Compile to site: `npm run build`.
- Live version during development: http://Pomax.github.io/BezierInfo-2/
- Run dev version: `npm start`, view in the browser on http://localhost:8080
- Compile for production: `npm run build`.
- Repositoryduring development: https://github.com/Pomax/BezierInfo-2
- Live version during development: https://Pomax.github.io/BezierInfo-2

View File

@@ -1,16 +0,0 @@
var React = require("react");
var ReactDOM = require("react-dom");
var noop = require("../lib/noop");
var MathJax = (typeof window !== "undefined" ? window.MathJax : false);
// fallback will simply do nothing when typesetting.
if(!MathJax){MathJax={Hub:{Queue:noop}};}
var LaTeX = React.createClass({
render: function() {
return <p ref="latex">{this.props.children}</p>;
}
});
module.exports = LaTeX;