You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
588 B

<%= turbo_frame_tag :flash,
data: {
controller: 'flash',
action: "
turbo:before-fetch-request@window->flash#enable
turbo:visit@window->flash#disable
turbo:load@window->flash#buildPopupsFromWithin
popup-toast@window->flash#onPopupEvent
" } do %>
<div class='hidden'>
<% flash.each do |type, messages| %>
<%= Time.now%>
<% Array(messages).each do |message| %>
<div data-flash-target='flashItem' data-type='<%= type %>'>
<%= message %>
</div>
<% end %>
<% end %>
</div>
<% end %>