Team:RHIT/static/wiki.js
From 2012.igem.org
(Difference between revisions)
(Created page with "/* This file is part of the cambridge 2011 igem team's wiki. nothing is guaranteed. Version 2, December 2004 Copyright (C) 2011 Haydn King hjking734@gmai...") |
|||
Line 33: | Line 33: | ||
} | } | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
$('head').html(head); | $('head').html(head); |
Revision as of 14:19, 17 July 2012
/*
This file is part of the cambridge 2011 igem team's wiki. nothing is guaranteed.
Version 2, December 2004
Copyright (C) 2011 Haydn King hjking734@gmail.com
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
- /
/*
- Removes iGEM style content, then pulls in the Cambridge Team's styling & javascript
- /
var get_login = function() { var page = $('#menubar.right-menu').find('#pt-userpage'); if(page.length == 0) return undefined; return page.children('a').text(); }
var set_login = function(username) { if(username != undefined) { $('#user-link').text(username).attr('href', '/User:' + username); $('#edit-link').text('Edit Page'); $('#edit-intro-link').text('Edit Introduction'); $('#logged_out').hide(); $('#logged_in').show(); } }
$('head').html(head);
$(window).ready(function() {
var login = get_login(); $('body').html($('#cam_page')); //this is ugly, but it makes sure that the JS is loaded in the correct order $.getScript(script, function() { $.getScript(wiki_js, function() { $.getScript(intro_js, function() { wiki_main(); }); }); }); set_bk(); set_login(login);
});