You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2013/11/15 13:18:38 UTC

svn commit: r1542244 - /syncope/branches/1_1_X/console/src/main/resources/org/apache/syncope/console/pages/BasePage.html

Author: ilgrosso
Date: Fri Nov 15 12:18:37 2013
New Revision: 1542244

URL: http://svn.apache.org/r1542244
Log:
Re-enabling table rollover effect, lost with jQuery upgrade

Modified:
    syncope/branches/1_1_X/console/src/main/resources/org/apache/syncope/console/pages/BasePage.html

Modified: syncope/branches/1_1_X/console/src/main/resources/org/apache/syncope/console/pages/BasePage.html
URL: http://svn.apache.org/viewvc/syncope/branches/1_1_X/console/src/main/resources/org/apache/syncope/console/pages/BasePage.html?rev=1542244&r1=1542243&r2=1542244&view=diff
==============================================================================
--- syncope/branches/1_1_X/console/src/main/resources/org/apache/syncope/console/pages/BasePage.html (original)
+++ syncope/branches/1_1_X/console/src/main/resources/org/apache/syncope/console/pages/BasePage.html Fri Nov 15 12:18:37 2013
@@ -47,8 +47,8 @@ under the License.
         $("#membership").tabs();
       });
 
-      /** Add rollover effect to tables supporting Ajax events (live)*/
-      $('table.ui-widget.ui-widget-content.table-hover tbody tr').live('mouseover mouseout',
+      /** Add rollover effect to tables supporting Ajax events */
+      $(document).on('mouseover mouseout', 'table.ui-widget.ui-widget-content.table-hover tbody tr',
               function(event) {
                 if (event.type == 'mouseover') {
                   $(this).addClass('selectedRow');