[Pkg-mozext-commits] [compactheader] 232/441: Fix bug in RSSLinkify.js when removing click listener for subject

David Prévot taffit at moszumanska.debian.org
Wed Mar 18 12:29:02 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository compactheader.

commit 873467dd566be245c3d433e461acf84389bad7a4
Author: Joachim.Herb at gmx.de <Joachim.Herb at gmx.de>
Date:   Sat Jul 23 22:45:33 2011 +0200

    Fix bug in RSSLinkify.js when removing click listener for subject
---
 chrome/CompactHeader/content/RSSLinkify.js | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/chrome/CompactHeader/content/RSSLinkify.js b/chrome/CompactHeader/content/RSSLinkify.js
index ab00b1b..3944611 100644
--- a/chrome/CompactHeader/content/RSSLinkify.js
+++ b/chrome/CompactHeader/content/RSSLinkify.js
@@ -78,9 +78,10 @@ org.mozdev.compactHeader.RSSLinkify = function() {
         RSSLinkify.oldSubject.setAttribute("collapsed", "true");
         RSSLinkify.newSubject.setAttribute("tooltiptext", url.headerValue);
         RSSLinkify.newSubject.addEventListener("click",
-            org.mozdev.compactHeader.RSSLinkify.openBrowser, false);
+          org.mozdev.compactHeader.RSSLinkify.openBrowser, false);
       } else {
-        removeEventListener('click', openBrowser, true);
+        removeEventListener('click',
+            org.mozdev.compactHeader.RSSLinkify.openBrowser, true);
         RSSLinkify.newSubject.setAttribute("collapsed", "true");
         RSSLinkify.oldSubject.setAttribute("collapsed", "false");
         RSSLinkify.oldSubject.setAttribute("tooltiptext", currentHeaderData["subject"].headerValue);

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/compactheader.git



More information about the Pkg-mozext-commits mailing list