Last active
February 12, 2021 05:48
-
-
Save khash/7a56317030494bf8424d9b45398e802b to your computer and use it in GitHub Desktop.
Slow Loading
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= render 'fast_part' %> | |
<%= render 'slow_part' %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# with turbo src | |
<%= render 'fast_part' %> | |
<%= turbo_frame_tag :part_2, src: slow_part_path %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= render 'fast_part' %> | |
<%= turbo_frame_tag :part_2, src: slow_part_path do %> | |
<img src="spinner.gif"/> | |
<% end %> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment