diff options
author | Raphael <mail@raphaelkabo.com> | 2023-10-09 20:10:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-09 20:10:29 +0100 |
commit | f716861b6430d4561b2cf70cd9f0d99accf49392 (patch) | |
tree | 6f96696b583e4fab1a2d1f54a2f99bcee3267c04 /views/partials/editeventmodal.handlebars | |
parent | cc6fcb4c405d8cffacbf9b1082abf61e918482fa (diff) | |
parent | 7fe1f42d56edb98875399b1da5e9b7e972209a0d (diff) |
Merge pull request #115 from lowercasename/rk/typescript
Typescript migration project (event group linker)
Diffstat (limited to 'views/partials/editeventmodal.handlebars')
-rw-r--r-- | views/partials/editeventmodal.handlebars | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/views/partials/editeventmodal.handlebars b/views/partials/editeventmodal.handlebars index a36cd98..a9fe626 100644 --- a/views/partials/editeventmodal.handlebars +++ b/views/partials/editeventmodal.handlebars @@ -8,8 +8,15 @@ </button> </div> <div class="modal-body"> - <form id="editEventForm" enctype="multipart/form-data" x-data="editEventForm()" x-init="init()" - @submit.prevent="submitForm"> + <form + id="editEventForm" + enctype="multipart/form-data" + x-data="editEventForm()" + x-init="init()" + @submit.prevent="submitForm" + @event-group-id-changed="data.eventGroupID = $event.detail" + @event-group-edit-token-changed="data.eventGroupEditToken = $event.detail" + > {{> eventForm }} @@ -47,3 +54,4 @@ <script type="text/javascript" src="/js/generate-timezones.js"></script> <script type="text/javascript" src="/js/modules/event-edit.js"></script> +<script src="/js/modules/group-linker.js"></script> |