mirror of
https://github.com/fly-apps/live_beats.git
synced 2024-11-25 09:20: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
|
def render(assigns) do
|
||||||
~H"""
|
~H"""
|
||||||
<!-- player -->
|
<!-- 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">
|
<div phx-update="ignore">
|
||||||
<audio></audio>
|
<audio></audio>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -143,13 +143,13 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<main class="flex-1 relative z-0 overflow-y-auto focus:outline-none">
|
|
||||||
<.live_component module={LiveBeatsWeb.LayoutComponent} id="layout" />
|
<.live_component module={LiveBeatsWeb.LayoutComponent} id="layout" />
|
||||||
|
|
||||||
<%= if @current_user do %>
|
<%= if @current_user do %>
|
||||||
<%= live_render(@socket, LiveBeatsWeb.PlayerLive, id: "player", session: %{}, sticky: true) %>
|
<%= live_render(@socket, LiveBeatsWeb.PlayerLive, id: "player", session: %{}, sticky: true) %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
<main class="flex-1 relative z-0 overflow-y-auto focus:outline-none">
|
||||||
<.flash flash={@flash} kind={:info}/>
|
<.flash flash={@flash} kind={:info}/>
|
||||||
<.flash flash={@flash} kind={:error}/>
|
<.flash flash={@flash} kind={:error}/>
|
||||||
<.connection_status>
|
<.connection_status>
|
||||||
|
|
Loading…
Reference in a new issue