mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-16 17:50:01 +00:00
1128b3ea83
* Prepare http server and preferences classes to add new settings to Web UI * Tabified Program preferences in Web UI since there will be a lot of settings soon * Started to add new settings to Web UI (PeX, LSD, Encryption, save path, temp path, scan dir, preallocateall, queueing, listen_port, upnp, nat-pmp, language, ip filter) -> Proxy is missing * Added a command line parameter to change the web ui port * Fix PeerGuardian .p2b binary filter support
37 lines
967 B
HTML
37 lines
967 B
HTML
<script type="text/javascript">
|
|
MochaUI.initializeTabs('propertiesTabs');
|
|
/*MochaUI.updateContent({
|
|
'element': $('properties'),
|
|
'url': 'prop-general.html'
|
|
});*/
|
|
|
|
$('PropGeneralLink').addEvent('click', function(e){
|
|
MochaUI.updateContent({
|
|
'element': $('properties'),
|
|
'url': 'prop-general.html'
|
|
});
|
|
});
|
|
|
|
$('PropTrackersLink').addEvent('click', function(e){
|
|
MochaUI.updateContent({
|
|
'element': $('properties'),
|
|
'url': 'prop-trackers.html'
|
|
});
|
|
});
|
|
|
|
$('PropFilesLink').addEvent('click', function(e){
|
|
MochaUI.updateContent({
|
|
'element': $('properties'),
|
|
'url': 'prop-files.html'
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<div class="toolbarTabs">
|
|
<ul id="propertiesTabs" class="tab-menu">
|
|
<li id="PropGeneralLink" class="selected"><a>_(General)</a></li>
|
|
<li id="PropTrackersLink"><a>_(Trackers)</a></li>
|
|
<li id="PropFilesLink"><a>_(Files)</a></li>
|
|
</ul>
|
|
<div class="clear"></div>
|
|
</div> |