Author: rjollos
Date: Wed Feb 13 20:49:51 2013
New Revision: 1445915

URL: http://svn.apache.org/r1445915
Log:
Reverse merge changes unintentionally committed in r1445914.

Modified:
    
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_plugins.html

Modified: 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_plugins.html
URL: 
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_plugins.html?rev=1445915&r1=1445914&r2=1445915&view=diff
==============================================================================
--- 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_plugins.html
 (original)
+++ 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_plugins.html
 Wed Feb 13 20:49:51 2013
@@ -33,7 +33,7 @@
     jQuery(document).ready(function($) {
       // Sets state of group toggler when component checkboxes are clicked
       function setGroupTogglerState() {
-        var table = $(this).closest("table.listing");
+        var table = $(this).closest("table.table");
         var checkboxes = $("td.sel input:checkbox:enabled", table);
         var numSelected = checkboxes.filter(":checked").length;
         var noneSelected = numSelected === 0;
@@ -43,16 +43,16 @@
             "indeterminate": !(noneSelected || allSelected)});
       }
       // Add group event behavior for controlling state of toggler
-      $("table.listing td.sel input:checkbox:enabled")
+      $("table.table td.sel input:checkbox:enabled")
         .click(setGroupTogglerState);
       // Add click behavior for the group toggler and initialize its state
-      $("table.listing th.sel").each(function() {
+      $("table.table th.sel").each(function() {
           $(this).attr("title", $(this).text())
       }).html('<input type="checkbox" />')
         .children()
         .click(function() {
           $("td.sel input:checkbox:enabled",
-            $(this).closest("table.listing")).prop("checked", this.checked);
+            $(this).closest("table.table")).prop("checked", this.checked);
         }).each(setGroupTogglerState);
     });
     /*]]>*/</script>
@@ -126,7 +126,7 @@
                   </py:if>
                 </dl>
                 <form method="post" action="">
-                  <table class="table listing">
+                  <table class="table">
                     <thead>
                       <tr>
                         <th class="full-x">Component</th>


Reply via email to