Adding a 'Loading' Element

Showing the rest of the list items -- infinitely. (Or almost)

We'll cover the following...

Changelog #

The next thing we need to do is to fetch more tweets dynamically. This will involve a few different changes:

  • We need to make some HTML elements that shows a loading state. To simplify our use case, we will once again use the beautiful stock dog instead of a spinning animation.
  • We need to introduce a delay into our server, otherwise we can’t test the loading state. We’ll
...