Browse Source

Enhanced debug log

Nathaniel van Diepen 11 years ago
parent
commit
e2507ea257
2 changed files with 5 additions and 1 deletions
  1. 1 1
      app/www/js/consoleshim.js
  2. 4 0
      app/www/js/omnomirc.js

+ 1 - 1
app/www/js/consoleshim.js

@@ -28,7 +28,7 @@
 			}).append($('<pre>').attr('id','console-log-pre'));
 		}
 		d.children('pre').each(function(){
-			$(this).html($(this).html()+""+msg+"<br/>");
+			$(this).html($(this).html()+""+msg+"<br/>").scrollTop($(this).height());
 		});
 		return msg;
 	};

+ 4 - 0
app/www/js/omnomirc.js

@@ -495,6 +495,10 @@
 										)
 								)
 						);
+					}else{
+						$('#console-log-pre').html('');
+						$('#console-log').hide();
+						$('#content').show();
 					}
 					$('#settings-list').html(frag);
 				},