ソースを参照

Enhanced debug log

Nathaniel van Diepen 11 年 前
コミット
e2507ea257
2 ファイル変更5 行追加1 行削除
  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);
 				},