mirror of https://github.com/zulip/zulip.git
index: Move audio file HTML out of .app.
There's no compelling reason for these to be inside the container element for the app's main screen UI.
This commit is contained in:
parent
d7528f6bbe
commit
4be5ce97cb
|
@ -146,7 +146,18 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="user-profile-modal-holder"></div>
|
||||
|
||||
<audio id="user-notification-sound-audio">
|
||||
<source class="notification-sound-source-ogg" type="audio/ogg" />
|
||||
<source class="notification-sound-source-mp3" type="audio/mpeg" />
|
||||
</audio>
|
||||
<audio id="realm-default-notification-sound-audio">
|
||||
<source class="notification-sound-source-ogg" type="audio/ogg" />
|
||||
<source class="notification-sound-source-mp3" type="audio/mpeg" />
|
||||
</audio>
|
||||
|
||||
<div class="alert-box">
|
||||
<div class="alert alert_sidebar alert-error home-error-bar" id="connection-error">
|
||||
<div class="exit"></div>
|
||||
|
@ -249,13 +260,5 @@
|
|||
<form id="logout_form" action="/accounts/logout/" method="POST">{{ csrf_input }}
|
||||
</form>
|
||||
</div>
|
||||
<audio id="user-notification-sound-audio">
|
||||
<source class="notification-sound-source-ogg" type="audio/ogg" />
|
||||
<source class="notification-sound-source-mp3" type="audio/mpeg" />
|
||||
</audio>
|
||||
<audio id="realm-default-notification-sound-audio">
|
||||
<source class="notification-sound-source-ogg" type="audio/ogg" />
|
||||
<source class="notification-sound-source-mp3" type="audio/mpeg" />
|
||||
</audio>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in New Issue