From 8ee99ebaf467e2060f08b9bd9aa2d9e861f21209 Mon Sep 17 00:00:00 2001 From: Jack Allnutt Date: Tue, 13 Sep 2011 11:51:37 +0100 Subject: [PATCH] Fix for Opera inserting a spurious
in the topic bar --- js/front.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/front.js b/js/front.js index c719247..c3f9d5e 100644 --- a/js/front.js +++ b/js/front.js @@ -130,6 +130,8 @@ var front = { $('#channel').val(init_data.channel); } + // Fix for Opera inserting a spurious
+ $('#kiwi .cur_topic br').remove(); $('#kiwi .cur_topic').keydown(function (e) { if (e.which === 13) { -- 2.25.1