[Mapbender-commits] r1918 - trunk/mapbender/http/javascripts

svn_mapbender at osgeo.org svn_mapbender at osgeo.org
Thu Dec 13 04:20:10 EST 2007


Author: verenadiewald
Date: 2007-12-13 04:20:09 -0500 (Thu, 13 Dec 2007)
New Revision: 1918

Modified:
   trunk/mapbender/http/javascripts/mod_tab.js
Log:
changed method openTab from private to public

Modified: trunk/mapbender/http/javascripts/mod_tab.js
===================================================================
--- trunk/mapbender/http/javascripts/mod_tab.js	2007-12-12 16:45:44 UTC (rev 1917)
+++ trunk/mapbender/http/javascripts/mod_tab.js	2007-12-13 09:20:09 UTC (rev 1918)
@@ -200,7 +200,7 @@
 			//otherwise
 			else {
 				// show the desired tab
-				openTab(id);
+				this.openTab(id);
 			}
 		}
 		else {
@@ -299,7 +299,7 @@
 	 * @private
 	 * @param {String} id the ID of the GUI element within the tab.
 	 */
-	var openTab = function(id) {
+	this.openTab = function(id) {
 		if (id !== null) {
 			activeTabId = id;
 			startAnimation("open");



More information about the Mapbender_commits mailing list