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
14 lines
477 B
<% if flash.count.positive? %>
|
|
<script data-turbo-temporary>
|
|
document.addEventListener('turbo:load',(e)=>{
|
|
|
|
const notyf=new Notyf({ duration: 5000, position: { x: 'center', y: 'top' } })
|
|
<% if flash.notice%> notyf.success('<%=flash.notice%>') <%end%>
|
|
<% if flash.alert%> notyf.error('<%=flash.alert%>') <%end%>
|
|
|
|
// useful to prevent flickering from turbo preview
|
|
Turbo.cache.exemptPageFromPreview()
|
|
|
|
}, {once: true})
|
|
</script>
|
|
<%end%>
|