Team:KAIST-Korea/jihanmenu

From 2011.igem.org

(Difference between revisions)
Line 4: Line 4:
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
-
<script language="javascript" type="text/javascript">
+
<script>
-
function capitaliseFirstLetter(string)
+
//Configure the script here
-
{
+
var teamname = "KAIST-Korea";
 +
 
 +
// Do not edit below
 +
 
 +
// Loop through the URL
 +
function buildDepth(array,count) {
 +
var depthStr="";
 +
for (i=0;i<count;i++)
 +
{
 +
depthStr=depthStr + array[i] + "/" ;
 +
}
 +
return depthStr;
 +
}
 +
 
 +
// The function
 +
function buildBreadCrumbTrail(page) {
 +
// Declare vars
 +
var constituentFolders = new Array();
 +
var currentURL = page;
 +
 
 +
// Split the URL
 +
constituentFolders=currentURL.split("/");
 +
 
 +
// Start with a link to the team home page
 +
var outputStr="<a href='https://2011.igem.org/Team:'" + teamname + ">Home</a>";
 +
 
 +
// Loop through the URL
 +
for (count=0;count<(constituentFolders.length);count++)
 +
{
 +
outputStr=outputStr + " > <a href='https://2011.igem.org/Team:" + teamname +
 +
buildDepth(constituentFolders,count) + constituentFolders[count] + "'>" +
 +
capitaliseFirstLetter(constituentFolders[count]).replace(/-/gi," ") + "</a>";
 +
}
 +
 
 +
// Write to the div
 +
$("#breadcrumbs").html(outputStr);
 +
}
 +
 
 +
// Capitalize the first letter
 +
function capitaliseFirstLetter(string) {
     return string.charAt(0).toUpperCase() + string.slice(1);
     return string.charAt(0).toUpperCase() + string.slice(1);
}
}
-
function buildDepth(array,count)
+
// Start the script upon page load
-
{
+
$(function() {
-
var depthStr="";
+
buildBreadCrumbTrail(window.location.pathname);
-
for (i=0;i<count;i++)
+
}
-
{
+
-
depthStr=depthStr + array[i] + "/" ;
+
-
}
+
-
return depthStr;
+
-
}
+
-
function buildBreadCrumbTrail(page)
+
-
{
+
-
var constituentFolders = new Array();
+
-
var currentURL = page;
+
-
constituentFolders=currentURL.split("/");
+
-
var outputStr="<a href='https://2010.igem.org/Team:TU_Delft#page=Home'>Home</a>";
+
-
if(page != "Home") {
+
-
for (count=0;count<(constituentFolders.length);count++)
+
-
{
+
-
if(constituentFolders[count].substring(0, 5) == "User:") {
+
-
outputStr = outputStr + " <span class='doubleright'>&raquo;</span> <a href='https://2010.igem.org/Team:TU_Delft#page=Team/'>Team</a> <span class='doubleright'>&raquo;</span> <a href='https://2010.igem.org/Team:TU_Delft#page=Team/members'>Members</a> <span class='doubleright'>&raquo;</span> <a href='https://2010.igem.org/Team:TU_Delft#page=" + buildDepth(constituentFolders,count) + constituentFolders[count] + "'>" + capitaliseFirstLetter(constituentFolders[count]).replace(/-/gi," ").substring(5) + "</a>";
+
-
}
+
-
if(constituentFolders[count].substring(0, 5) !== "User:") {
+
-
outputStr=outputStr + " <span class='doubleright'>&raquo;</span> <a href='https://2010.igem.org/Team:TU_Delft#page=" + buildDepth(constituentFolders,count) + constituentFolders[count] + "'>" + capitaliseFirstLetter(constituentFolders[count]).replace(/-/gi," ") + "</a>";
+
-
}
+
-
}
+
-
}
+
-
$("#breadcrumbs").html(outputStr);
+
-
}
+
</script>
</script>

Revision as of 09:01, 7 August 2011