------------------------------- Describe your changes in detail -----------------------------------
Added the code (this.element.scrollTop = this.element.scrollHeight) for the scrollbar to stay bottom when the console output results exceed the console box's maximum height.
----------------------------- What problem does this change solve? -----------------------------
As it is mentioned in issue #698 , Scrollbar of console output just stayed top even though the results' height is longer than the console box maximum height.
Now it focuses bottom(last result) when the results exceed box's maximum height just like any other code editors' console.
------------------------------------------- Fixed issue -------------------------------------------
It Fixes #698 .
------------------------------- Describe your changes in detail ----------------------------------- Added the code (
this.element.scrollTop = this.element.scrollHeight
) for the scrollbar to stay bottom when the console output results exceed the console box's maximum height.----------------------------- What problem does this change solve? ----------------------------- As it is mentioned in issue #698 , Scrollbar of console output just stayed top even though the results' height is longer than the console box maximum height. Now it focuses bottom(last result) when the results exceed box's maximum height just like any other code editors' console.
------------------------------------------- Fixed issue ------------------------------------------- It Fixes #698 .