diff --git a/README.md b/README.md index 0a9c084a..de1098a1 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/components/LaTeX.jsx b/components/LaTeX.jsx deleted file mode 100644 index 93ef43c9..00000000 --- a/components/LaTeX.jsx +++ /dev/null @@ -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
{this.props.children}
; - } -}); - -module.exports = LaTeX;