No RSS popup when the link points the RSS activation form.
authorFlorent Bruneau <florent.bruneau@polytechnique.org>
Sat, 14 Jun 2008 14:42:18 +0000 (16:42 +0200)
committerFlorent Bruneau <florent.bruneau@polytechnique.org>
Sat, 14 Jun 2008 14:42:18 +0000 (16:42 +0200)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
htdocs/javascript/xorg.js

index e4f7b36..f82cc9f 100644 (file)
@@ -160,7 +160,7 @@ function popWin(theNode,w,h) {
 function goodiesPopup(node) {
     if (node.href.indexOf('ical') > -1) {
         __goodies_popup(node, __goodies_ical_sites, 'Calendrier iCal');
-    } else if (node.href.indexOf('rss') > -1 && (node.href.indexOf('xml') > -1 || node.href.indexOf('hash'))) {
+    } else if (node.href.indexOf('rss') > -1 && node.href.indexOf('prefs/rss') < 0 &&  (node.href.indexOf('xml') > -1 || node.href.indexOf('hash'))) {
         __goodies_popup(node, __goodies_rss_sites, 'Fil rss');
     }
 }