Wrapping up for the night. This can now copy the iframe src link.

This commit is contained in:
Scott Idem
2025-12-16 21:51:29 -05:00
parent 0b64d33a72
commit a8314a5da0
3 changed files with 36 additions and 13 deletions

View File

@@ -2,6 +2,7 @@
import { onMount, onDestroy } from 'svelte';
import { page } from '$app/stores';
import { ae_loc, ae_api } from '$lib/stores/ae_stores';
import MyClipboard from '$lib/app_components/e_app_clipboard.svelte';
import { create_ae_obj__activity_log, update_ae_obj__activity_log } from '$lib/ae_core/core__activity_log';
let log_lvl: number = $state(0);
@@ -815,9 +816,16 @@
</div>
<div class="
flex flex-col sm:flex-row gap-1 items-center justify-center w-full
flex flex-col sm:flex-row flex-wrap gap-1 items-center justify-center w-full
mt-2 pt-2 border-t-2 border-dashed border-gray-400">
<MyClipboard
value={encodeURI($page.url.href)}
btn_text="Copy Break-out Link"
btn_title="Copy a link to this meeting that can be opened outside of the Novi iframe."
btn_class="mt-2 px-2 py-1 bg-indigo-400 text-white rounded hover:bg-indigo-500"
></MyClipboard>
<button
class="mt-2 px-2 py-1 bg-orange-200 text-white rounded hover:bg-orange-400"
onclick={() => init_jitsi()}