parent
2d000e9c4e
commit
0ec77c5b3e
@ -0,0 +1,32 @@ |
||||
require('font-awesome/css/font-awesome.css'); |
||||
require('../styles/application.scss'); |
||||
|
||||
function onDomContentLoaded(callback) { |
||||
if (document.readyState !== 'loading') { |
||||
callback(); |
||||
} else { |
||||
document.addEventListener('DOMContentLoaded', callback); |
||||
} |
||||
} |
||||
|
||||
function main() { |
||||
const Mastodon = require('mastodon/containers/mastodon').default; |
||||
const React = require('react'); |
||||
const ReactDOM = require('react-dom'); |
||||
const Rails = require('rails-ujs'); |
||||
window.Perf = require('react-addons-perf'); |
||||
|
||||
Rails.start(); |
||||
|
||||
require.context('../images/', true); |
||||
require.context('../../assets/stylesheets/', false, /custom.*\.scss$/); |
||||
|
||||
onDomContentLoaded(() => { |
||||
const mountNode = document.getElementById('mastodon'); |
||||
const props = JSON.parse(mountNode.getAttribute('data-props')); |
||||
|
||||
ReactDOM.render(<Mastodon {...props} />, mountNode); |
||||
}); |
||||
} |
||||
|
||||
export default main |
@ -0,0 +1,18 @@ |
||||
import 'intl'; |
||||
import 'intl/locale-data/jsonp/en.js'; |
||||
import 'es6-symbol/implement'; |
||||
import includes from 'array-includes'; |
||||
import assign from 'object-assign'; |
||||
import isNaN from 'is-nan'; |
||||
|
||||
if (!Array.prototype.includes) { |
||||
includes.shim(); |
||||
} |
||||
|
||||
if (!Object.assign) { |
||||
Object.assign = assign; |
||||
} |
||||
|
||||
if (!Number.isNaN) { |
||||
Number.isNaN = isNaN; |
||||
} |
Loading…
Reference in new issue