Advertisement
Guest User

Untitled

a guest
May 21st, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <!-- app/views/movies/show.html.erb -->
  2.  
  3. <div id="rating">Loading rating...</div>
  4.  
  5. <script>
  6. const checkRating = () => {
  7. fetch("<%= movie_rating_path(@movie) %>")
  8. .then(response => response.text())
  9. .then(response => {
  10. document.getElementById("rating").innerHTML = response;
  11. });
  12. };
  13.  
  14. setInterval(checkRating, 2000);
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement