From b911b4607dfce43d888137a8d9f9e98a10206cba Mon Sep 17 00:00:00 2001 From: Thomas Date: Sat, 10 Aug 2019 18:04:24 +0200 Subject: [PATCH] remove media --- templates/fediplan/schedule.html.twig | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/templates/fediplan/schedule.html.twig b/templates/fediplan/schedule.html.twig index 88395e6..47dcd95 100644 --- a/templates/fediplan/schedule.html.twig +++ b/templates/fediplan/schedule.html.twig @@ -393,7 +393,7 @@ ' \n' + ' \n' + '
\n' + - ' \n' + @@ -447,7 +447,14 @@ .replace(/(^|[^\/\w])@(([a-z0-9_]+)@[a-z0-9\.\-]+[a-z0-9]+)/ig, '$1@$3'); $("#count").text(inputText.length); }); - var timezone = Intl.DateTimeFormat().resolvedOptions().timeZone; - $('#compose_timeZone').val(timezone); + + $(document).ready(function() { + var timezone = Intl.DateTimeFormat().resolvedOptions().timeZone; + $('#compose_timeZone').val(timezone); + $(document).on('click', '.delete_media', function () { + var id = $(this).attr('data-id'); + $('#media_container_' + id).remove(); + }) + }); {% endblock %}