about summary refs log tree commit diff
path: root/app/javascript/themes/glitch/packs/share.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/javascript/themes/glitch/packs/share.js')
-rw-r--r--app/javascript/themes/glitch/packs/share.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/app/javascript/themes/glitch/packs/share.js b/app/javascript/themes/glitch/packs/share.js
deleted file mode 100644
index dc2e677e4..000000000
--- a/app/javascript/themes/glitch/packs/share.js
+++ /dev/null
@@ -1,22 +0,0 @@
-import loadPolyfills from 'themes/glitch/util/load_polyfills';
-
-function loaded() {
-  const ComposeContainer = require('themes/glitch/containers/compose_container').default;
-  const React = require('react');
-  const ReactDOM = require('react-dom');
-  const mountNode = document.getElementById('mastodon-compose');
-
-  if (mountNode !== null) {
-    const props = JSON.parse(mountNode.getAttribute('data-props'));
-    ReactDOM.render(<ComposeContainer {...props} />, mountNode);
-  }
-}
-
-function main() {
-  const ready = require('themes/glitch/util/ready').default;
-  ready(loaded);
-}
-
-loadPolyfills().then(main).catch(error => {
-  console.error(error);
-});