ハイライトだけされてhintsの数字が表示されなくなるバグ

followでhints絞ったあとfollowの文字を削除したら数字だけ表示されなくなる。

しばらく前にあって、でもちょっと前に無くなったと思ったのだけど。これ書いてる時点の最新版のソースコードだとこうなってしまう。

commit e40b68c7f479489b564793924d43cc9ca2f825b0
Author: Kris Maglione <maglione.k@gmail.com>
Date:   Tue Dec 2 20:35:03 2008 -0500

    Remove mozdev links and external images/css from the help

真面目に原因追ったりしないでとりあえず手元で場当たり的な修正だけしてみた。

--- a/liberator/content/hints.js
+++ b/liberator/content/hints.js
@@ -218,6 +218,12 @@ function Hints() //{{{
                     elem.removeAttributeNS(NS.uri, "highlight");
                     continue inner;
                 }
+                else
+                {
+                    span.style.display = "inline";
+                    if (imgspan)
+                        imgspan.style.display = "inline";
+                }

                 if (text == "" && elem.firstChild && elem.firstChild.tagName == "IMG")
                 {

anekosさんナイスです!

nokturnalmortum 2008/12/05 18:58
パクってコミットしてみました。

おお、ありがたい!

test