36 lines
1.5 KiB
HTML
36 lines
1.5 KiB
HTML
<script type="text/javascript" src="https://code.jquery.com/jquery-1.7.min.js"></script>
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
if ( location.hostname.match('forum.deluge-torrent.org') )
|
|
{
|
|
$('ul#deluge-navbar li a[href="https://forum.deluge-torrent.org/"]').attr('class', 'currenttab');
|
|
}
|
|
else if ( location.hostname.match('git.deluge-torrent.org') )
|
|
{
|
|
$('ul#deluge-navbar li a[href$="Development"]').attr('class', 'currenttab');
|
|
}
|
|
else if ( location.hostname.match('dev.deluge-torrent.org') )
|
|
{
|
|
var path = location.pathname.split("/");
|
|
selected_tab = path[1].match('wiki') ? path[2] : 'roadmap';
|
|
$('ul#deluge-navbar li a[href$="' + selected_tab + '"]').attr('class', 'currenttab');
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<div id="deluge-header">
|
|
<div id="deluge-header-inner">
|
|
<div id="delugelogo">
|
|
<h1 id="delugetext"><a href="https://dev.deluge-torrent.org/">Deluge</a></h1>
|
|
</div>
|
|
<ul id="deluge-navbar">
|
|
<li><a href="https://dev.deluge-torrent.org/wiki/Download">Download</a></li>
|
|
<li><a href="https://dev.deluge-torrent.org/wiki/Plugins">Plugins</a></li>
|
|
<li><a href="https://forum.deluge-torrent.org/">Forum</a></li>
|
|
<li><a href="https://dev.deluge-torrent.org/wiki/UserGuide">Support</a></li>
|
|
<li><a href="https://dev.deluge-torrent.org/roadmap">Bugs</a></li>
|
|
<li><a href="https://dev.deluge-torrent.org/wiki/Development">Development</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|