Sha256: 63c1437da97bd8dbaf3ab14642c6dc50ab38bc195ea59244fca1a527bba04e0d
Contents?: true
Size: 706 Bytes
Versions: 32
Compression:
Stored size: 706 Bytes
Contents
(function () { var React = require('react'), injectTapEventPlugin = require("react-tap-event-plugin"), Main = require('./components/main'); // Our custom react component //Needed for React Developer Tools window.React = React; //Needed for onTouchTap //Can go away when react 1.0 release //Check this repo: //https://github.com/zilverline/react-tap-event-plugin injectTapEventPlugin(); // Render the main app react component into the document body. // For more details see: https://facebook.github.io/react/docs/top-level-api.html#react.render window.ReactMain = React.render( <Main /> , document.body); ReactMain.imagesQueue = 0; })();
Version data entries
32 entries across 32 versions & 1 rubygems