Index: popups_admin.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/popups/Attic/popups_admin.module,v
retrieving revision 1.1.4.8
diff -u -r1.1.4.8 popups_admin.module
--- popups_admin.module	26 Feb 2009 18:51:44 -0000	1.1.4.8
+++ popups_admin.module	27 Feb 2009 09:14:38 -0000
@@ -23,8 +23,8 @@
  *
  */
 function popups_admin_popups() {
-    
-  return array(
+
+  $popups = array(
     'admin/build/block' => array( // Blocks admin page.
       '#tabs-wrapper a[href$=admin/build/block/add]', // Add Block
       '#blocks a[href~=admin/build/block/configure]'  => array(  // configure
@@ -147,6 +147,22 @@
     
     
   );
+  
+  // Aggregator module
+  if (module_exists('aggregator')) {
+    $popups['admin/content/aggregator'] = array(
+      // Add category, Add feed
+      '#tabs-wrapper a[href$=admin/content/aggregator/add/category], #tabs-wrapper a[href$=admin/content/aggregator/add/feed]',
+      // Settings
+      '#tabs-wrapper a[href$=admin/content/aggregator/settings]' => array(
+        'noUpdate' => TRUE,
+      ),
+      // Remove and editing individual feed items
+      'table td a[href*=admin/content/aggregator/edit/], table td a[href*=admin/content/aggregator/remove/]',
+    );
+  }
+
+  return $popups;
 }
 
 
