X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..6e39d509471fe9b4e2660e0d1631b350d0c66f40:/docs/source/debug.html diff --git a/docs/source/debug.html b/docs/source/debug.html index 17ac0274..879ce142 100644 --- a/docs/source/debug.html +++ b/docs/source/debug.html @@ -1,5 +1,6 @@ + The source code @@ -237,10 +238,11 @@ Ext.debug.LogPanel = Ext.extend(Ext.Panel, { log : function(){ var markup = [ '
', Ext.util.Format.htmlEncode(Array.prototype.join.call(arguments, ', ')).replace(/\n/g, '
').replace(/\s/g, ' '), - '
'].join(''); + ''].join(''), + bd = this.body.dom; this.body.insertHtml('beforeend', markup); - this.body.scrollTo('top', 100000); + bd.scrollTop = bd.scrollHeight; }, clear : function(){