Fix many, many typos

Import external libraries with similar fixes as well
This commit is contained in:
Michael
2024-06-21 20:42:32 -04:00
parent 02c986d853
commit 8d28e428f5
82 changed files with 302 additions and 303 deletions
@@ -75,7 +75,7 @@ _TextualScroller._documentScrolledCallback = function() /* PRIVATE */
{
var scrolledElement = _TextualScroller._scrolledElement;
/* Height of scrollabe area */
/* Height of scrollable area */
var scrollHeightPrevious = TextualScroller.scrollHeightCurrentValue;
var scrollHeightCurrent = scrolledElement.scrollHeight;
@@ -90,7 +90,7 @@ _TextualScroller._documentScrolledCallback = function() /* PRIVATE */
/* If nothing changed, we ignore the event.
It is possible to receive a scroll event but nothing changes
because we ignore elastic scrolling. User can reach bottom,
elsastic scroll, then bounce back. We get notification for
elastic scroll, then bounce back. We get notification for
both times we reach bottom, but values do not change. */
if (scrollHeightPrevious === scrollHeightCurrent &&
scrollPositionPrevious === scrollPositionCurrent)