about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/ui/util/async-components.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-08-31 03:38:35 +0200
committerGitHub <noreply@github.com>2017-08-31 03:38:35 +0200
commitd1a78eba1558004f69ab8933b08ffe0093671546 (patch)
treec25b885ee78dfeb5c4cc8a06bded252ff5d7915e /app/javascript/mastodon/features/ui/util/async-components.js
parent2db9ccaf3eeada3106e88e08163495ae8e741574 (diff)
Embed modal (#4748)
* Embed modal

* Proxy OEmbed requests from web UI
Diffstat (limited to 'app/javascript/mastodon/features/ui/util/async-components.js')
-rw-r--r--app/javascript/mastodon/features/ui/util/async-components.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/javascript/mastodon/features/ui/util/async-components.js b/app/javascript/mastodon/features/ui/util/async-components.js
index 7f6090d3a..0882beb7f 100644
--- a/app/javascript/mastodon/features/ui/util/async-components.js
+++ b/app/javascript/mastodon/features/ui/util/async-components.js
@@ -109,3 +109,7 @@ export function MediaGallery () {
 export function VideoPlayer () {
   return import(/* webpackChunkName: "status/video_player" */'../../../components/video_player');
 }
+
+export function EmbedModal () {
+  return import(/* webpackChunkName: "modals/embed_modal" */'../components/embed_modal');
+}