Skip to content

Commit bc4f081

Browse files
committed
Fix the log in Opera. Fixes #5.
1 parent d3178c1 commit bc4f081

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WebContent/js/cah.log.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ cah.log.status = function(text, opt_class) {
4747
var scroll = $("#log").prop("scrollHeight") - $("#log").height() - $("#log").prop("scrollTop") <= 5;
4848

4949
var node = $("<span></span><br/>");
50-
$(node).text("[" + new Date().toLocaleTimeString() + "] " + text + "\n");
50+
$(node[0]).text("[" + new Date().toLocaleTimeString() + "] " + text + "\n");
5151
if (opt_class) {
5252
$(node).addClass(opt_class);
5353
}

0 commit comments

Comments
 (0)