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.

14 lines
477 B

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. <% if flash.count.positive? %>
  2. <script data-turbo-temporary>
  3. document.addEventListener('turbo:load',(e)=>{
  4. const notyf=new Notyf({ duration: 5000, position: { x: 'center', y: 'top' } })
  5. <% if flash.notice%> notyf.success('<%=flash.notice%>') <%end%>
  6. <% if flash.alert%> notyf.error('<%=flash.alert%>') <%end%>
  7. // useful to prevent flickering from turbo preview
  8. Turbo.cache.exemptPageFromPreview()
  9. }, {once: true})
  10. </script>
  11. <%end%>