Author: brushed
Date: Wed Jun 25 13:30:39 2008
New Revision: 671648
URL: http://svn.apache.org/viewvc?rev=671648&view=rev
Log:
[JSPWIKI-295] Sub tabs on the Admin.jsp didn't work because the corresponding
tag ID's were containing dot's.
Modified:
incubator/jspwiki/trunk/ChangeLog
incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java
incubator/jspwiki/trunk/src/webdocs/scripts/jspwiki-common.js
Modified: incubator/jspwiki/trunk/ChangeLog
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/ChangeLog?rev=671648&r1=671647&r2=671648&view=diff
==============================================================================
--- incubator/jspwiki/trunk/ChangeLog (original)
+++ incubator/jspwiki/trunk/ChangeLog Wed Jun 25 13:30:39 2008
@@ -1,3 +1,10 @@
+2008-06-25 Dirk Frederickx <[EMAIL PROTECTED]>
+
+ * 2.7.0-svn-50
+
+ * [JSPWIKI-295] Sub tabs on the Admin.jsp didn't work because the
+ corresponding tag ID's were containing dot's.
+
2008-06-22 Dirk Frederickx <[EMAIL PROTECTED]>
* 2.7.0-svn-49
Modified: incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java?rev=671648&r1=671647&r2=671648&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java (original)
+++ incubator/jspwiki/trunk/src/com/ecyrd/jspwiki/Release.java Wed Jun 25
13:30:39 2008
@@ -77,7 +77,7 @@
* <p>
* If the build identifier is empty, it is not added.
*/
- public static final String BUILD = "49";
+ public static final String BUILD = "50";
/**
* This is the generic version string you should use
Modified: incubator/jspwiki/trunk/src/webdocs/scripts/jspwiki-common.js
URL:
http://svn.apache.org/viewvc/incubator/jspwiki/trunk/src/webdocs/scripts/jspwiki-common.js?rev=671648&r1=671647&r2=671648&view=diff
==============================================================================
--- incubator/jspwiki/trunk/src/webdocs/scripts/jspwiki-common.js (original)
+++ incubator/jspwiki/trunk/src/webdocs/scripts/jspwiki-common.js Wed Jun 25
13:30:39 2008
@@ -776,12 +776,12 @@
click: function(){
var menu = $(this).getParent(),
tabs = menu.getNext();
-
+
menu.getChildren().removeClass('activetab');
this.addClass('activetab');
tabs.getChildren().addClass('hidetab');
- $E('#'+this.id.substr(5),tabs).removeClass('hidetab');
+ tabs.getElementById(this.id.substr(5)).removeClass('hidetab');
}
}