mirror of
https://github.com/fly-apps/live_beats.git
synced 2024-11-25 01:10:59 +00:00
Merge pull request #12 from ndarilek/cleaner-regions
Minor cleanup to make navigating by region easier.
This commit is contained in:
commit
a0e64ef901
2 changed files with 7 additions and 7 deletions
|
@ -9,7 +9,7 @@ defmodule LiveBeatsWeb.PlayerLive do
|
|||
def render(assigns) do
|
||||
~H"""
|
||||
<!-- player -->
|
||||
<div id="audio-player" phx-hook="AudioPlayer" class="w-full" >
|
||||
<div id="audio-player" phx-hook="AudioPlayer" class="w-full" role="region" aria-label="Player" >
|
||||
<div phx-update="ignore">
|
||||
<audio></audio>
|
||||
</div>
|
||||
|
|
|
@ -143,13 +143,13 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<main class="flex-1 relative z-0 overflow-y-auto focus:outline-none">
|
||||
<.live_component module={LiveBeatsWeb.LayoutComponent} id="layout" />
|
||||
|
||||
<%= if @current_user do %>
|
||||
<%= live_render(@socket, LiveBeatsWeb.PlayerLive, id: "player", session: %{}, sticky: true) %>
|
||||
<% end %>
|
||||
|
||||
<main class="flex-1 relative z-0 overflow-y-auto focus:outline-none">
|
||||
<.flash flash={@flash} kind={:info}/>
|
||||
<.flash flash={@flash} kind={:error}/>
|
||||
<.connection_status>
|
||||
|
|
Loading…
Reference in a new issue