You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by ij...@apache.org on 2012/05/11 10:19:07 UTC

svn commit: r1337056 - /jena/site/trunk/content/js/jena-navigation.js

Author: ijd
Date: Fri May 11 08:19:07 2012
New Revision: 1337056

URL: http://svn.apache.org/viewvc?rev=1337056&view=rev
Log:
Fix for non-selection of home menu

Modified:
    jena/site/trunk/content/js/jena-navigation.js

Modified: jena/site/trunk/content/js/jena-navigation.js
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/js/jena-navigation.js?rev=1337056&r1=1337055&r2=1337056&view=diff
==============================================================================
--- jena/site/trunk/content/js/jena-navigation.js (original)
+++ jena/site/trunk/content/js/jena-navigation.js Fri May 11 08:19:07 2012
@@ -38,7 +38,7 @@ var JenaNavigation = function() {
    * @param {Object} fn
    */
   var findTopMenu = function( fileName, fn ) {
-    var expr = (fileName == 'about_jena') ? "#home-menu" : "#topmenu a[href*='" + fileName + "']";
+    var expr = (fileName == 'about_jena') ? "#home_menu" : "#topmenu a[href*='" + fileName + "']";
     $(expr).first().each( function( n ) {
         fn( this );
     } );