Difference between revisions of "Template:Goettingen/CSS"

Line 2,229: Line 2,229:
  
  
 +
$(document).ready(function() {
  
 +
$("#HQ_page").attr('id','');
  
$('#accordion2').find('.notebook_item').click(function(){
+
 
 +
if ( wgPageName.substring( 0,  8) == "Template")  {  // if the page is a template it displays the full name in a single line
 +
$("#team_name").html( wgPageName );
 +
}
 +
 
 +
else if (  ( (wgPageName.match(/\//g) || []).length ) == 0 ) {  // if it is the home page , just print the team's name
 +
$("#team_name").html( wgPageName.substring( 5, wgPageName.length ) );
 +
}
 +
 
 +
else {
 +
// this adds the team's name as an h1
 +
$("#team_name").html( wgPageName.substring( 5 , wgPageName.indexOf("/")  ) );
 +
 
 +
// this adds the page's title as an h4
 +
$("#page_name").html (    ( wgPageName.substring( wgPageName.indexOf("/") + 1, wgPageName.length ) ).replace( /\/|_/g , " ")  );
 +
}
 +
 
 +
 
 +
 
 +
 
 +
$('#accordion2').find('.menu_item').click(function(){
  
 
//Expand or collapse this panel
 
//Expand or collapse this panel
submenu = $(this).find('.notebook_submenu');
+
submenu = $(this).find('.submenu');
 
submenu.toggle();
 
submenu.toggle();
  
Line 2,247: Line 2,269:
  
 
//Hide the other panels
 
//Hide the other panels
$(".notebook_submenu").not(notebook_submenu).hide();
+
$(".submenu").not(submenu).hide();
 
$(".icon").not(icon).removeClass("less").addClass("plus");
 
$(".icon").not(icon).removeClass("less").addClass("plus");
 
});
 
});
Line 2,268: Line 2,290:
 
</script>
 
</script>
  
 +
 +
  
  

Revision as of 14:17, 30 August 2016