From b2128609ac8159a14224deba399144b3400c8c20 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Sun, 13 Nov 2016 08:16:12 +0100 Subject: Finally give in and use React, minor tweeks. Preact (a minimalistic React alternative) had too many bugs ... --- lib/vendor/react-dom.js | 18525 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 18525 insertions(+) create mode 100644 lib/vendor/react-dom.js (limited to 'lib/vendor/react-dom.js') diff --git a/lib/vendor/react-dom.js b/lib/vendor/react-dom.js new file mode 100644 index 000000000..116fbc181 --- /dev/null +++ b/lib/vendor/react-dom.js @@ -0,0 +1,18525 @@ + /** + * ReactDOM v16.0.0-alpha + */ + +;(function(f) { + // CommonJS + if (typeof exports === "object" && typeof module !== "undefined") { + f(require('react')); + + // RequireJS + } else if (typeof define === "function" && define.amd) { + require(['react'], f); + + //