From 5a85bbcafece2257e7cd17a5c9f97b194a8e4308 Mon Sep 17 00:00:00 2001 From: Amanda Ghassaei <amandaghassaei@gmail.com> Date: Tue, 27 Oct 2015 02:47:57 -0400 Subject: [PATCH] eod --- js/menus/otherUI/Console.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/js/menus/otherUI/Console.js b/js/menus/otherUI/Console.js index 7159a27c..72c4b234 100644 --- a/js/menus/otherUI/Console.js +++ b/js/menus/otherUI/Console.js @@ -24,6 +24,7 @@ define(['jquery', 'underscore', 'backbone', 'appState'], function($, _, Backbone }); this._setWidth(false); this._setVisibility(); + this._scrollToBottom(); }, _setWidth: function(immediately){ @@ -67,6 +68,11 @@ define(['jquery', 'underscore', 'backbone', 'appState'], function($, _, Backbone var height = $output.height(); $output.append(html); $output.height(height); + this._scrollToBottom(); + }, + + _scrollToBottom: function(){ + var $output = $("#consoleOutput"); $output.scrollTop($output[0].scrollHeight); }, -- GitLab