Team:ETH Zurich/Templates/HeaderNew
From 2011.igem.org
(Difference between revisions)
Line 10: | Line 10: | ||
$(function() | $(function() | ||
{ | { | ||
- | |||
- | |||
- | |||
- | |||
var docLink = document.URL; | var docLink = document.URL; | ||
if (document.URL.indexOf("?") != -1) | if (document.URL.indexOf("?") != -1) | ||
{ | { | ||
- | + | docLink += '&'; | |
} | } | ||
else | else | ||
{ | { | ||
- | + | docLink += '?'; | |
} | } | ||
- | $('#editLink').attr('href', docLink + 'action=edit'); | + | if ($('#pt-logout').length) |
- | $('#historyLink').attr('href', docLink + 'action=history'); | + | { |
- | + | $('#loginMenu').hide(); | |
- | + | $('#editMenu').show(); | |
+ | |||
+ | $('#editLink').attr('href', docLink + 'action=edit'); | ||
+ | $('#historyLink').attr('href', docLink + 'action=history'); | ||
+ | } | ||
+ | else | ||
+ | { | ||
+ | // Page | ||
+ | var page = document.URL; | ||
+ | var a = document.createElement('a'); | ||
+ | a.href = document.URL; | ||
+ | var docPath = a.pathname + a.search; | ||
+ | $('#loginLink').attr('href', 'https://2011.igem.org/wiki/index.php?title=Special:UserLogin&returnto=' + encodeURIComponent(docPath)); | ||
} | } | ||
- | |||
}); | }); | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
}); | }); | ||