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.

13 lines
332 B

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. <h2>NOTIFICATION BAR</h2>
  2. <script data-turbo-temporary>
  3. document.addEventListener('turbo:load',(e)=>{
  4. const notyf=window.buildNotyf()
  5. notyf.success('rails notice')
  6. notyf.error('rails alert')
  7. // useful to prevent flickering from turbo preview
  8. Turbo.cache.exemptPageFromPreview()
  9. }, {once: true})
  10. </script>