zulip/templates/zerver/close_window.html

16 lines
413 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>{{ _("Video call ended") }} | Zulip</title>
<script>
window.close();
// Why doesnt this work in Firefox? See
// https://bugzilla.mozilla.org/show_bug.cgi?id=1353466
</script>
</head>
<body>
<p>{{ _("You may now close this window.") }}</p>
</body>
</html>