Difference between revisions of "Template:Example"

(Prototype team template page)
 
(10 intermediate revisions by 2 users not shown)
Line 209: Line 209:
 
}
 
}
  
.incomplete {
+
.judges-will-not-evaluate {
 
border: 4px solid #72c9b6;
 
border: 4px solid #72c9b6;
 
display: block;
 
display: block;
Line 217: Line 217:
 
}
 
}
  
.complete {
 
display: none;
 
}
 
  
 
/*STYLING */
 
/*STYLING */
Line 468: Line 465:
 
 
  
if ( wgPageName.indexOf(":") == 8 ) {  // if the page is a template it displays the full name in a single line
+
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 );  
 
$("#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 ) );
 
}
 
}
  
Line 477: Line 478:
  
 
// this adds the page's title as an h4
 
// this adds the page's title as an h4
$("#page_name").html (    ( wgPageName.substring( wgPageName.indexOf("/") + 1, wgPageName.length ) ).replace( /\//g , " ")  );
+
$("#page_name").html (    ( wgPageName.substring( wgPageName.indexOf("/") + 1, wgPageName.length ) ).replace( /\/|_/g , " ")  );
 
}
 
}
 +
 +
 +
if( ($(location).attr('href')).indexOf("submit") >= 0  ) {
 +
$(".menu_wrapper").css( { "position": "absolute", "height": "auto"});
 +
$("#wpTextbox1").css( 'margin-top', '440px');
 +
}
 +
 +
 +
  
 
$('#accordion').find('.menu_item').click(function(){
 
$('#accordion').find('.menu_item').click(function(){

Latest revision as of 16:05, 22 March 2017