2009-12-05 19:09:18 +03:00
|
|
|
<script type="text/javascript">
|
|
|
|
MochaUI.initializeTabs('propertiesTabs');
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* 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
2009-12-28 22:39:47 +03:00
|
|
|
/*MochaUI.updateContent({
|
2009-12-05 19:09:18 +03:00
|
|
|
'element': $('properties'),
|
|
|
|
'url': 'prop-general.html'
|
* Replace priority combo boxes by check boxes in Web UI as in Regular UI
* 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
2009-12-28 22:39:47 +03:00
|
|
|
});*/
|
2009-12-05 19:09:18 +03:00
|
|
|
|
|
|
|
$('PropGeneralLink').addEvent('click', function(e){
|
|
|
|
MochaUI.updateContent({
|
2010-06-07 17:41:32 +04:00
|
|
|
'element': $('propertiesPanel'),
|
2009-12-05 19:09:18 +03:00
|
|
|
'url': 'prop-general.html'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$('PropTrackersLink').addEvent('click', function(e){
|
|
|
|
MochaUI.updateContent({
|
2010-06-07 17:41:32 +04:00
|
|
|
'element': $('propertiesPanel'),
|
2009-12-05 19:09:18 +03:00
|
|
|
'url': 'prop-trackers.html'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
$('PropFilesLink').addEvent('click', function(e){
|
|
|
|
MochaUI.updateContent({
|
2010-06-07 17:41:32 +04:00
|
|
|
'element': $('propertiesPanel'),
|
2009-12-05 19:09:18 +03:00
|
|
|
'url': 'prop-files.html'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2009-11-23 23:46:45 +03:00
|
|
|
<div class="toolbarTabs">
|
2009-11-23 23:16:17 +03:00
|
|
|
<ul id="propertiesTabs" class="tab-menu">
|
2009-11-23 23:46:45 +03:00
|
|
|
<li id="PropGeneralLink" class="selected"><a>_(General)</a></li>
|
|
|
|
<li id="PropTrackersLink"><a>_(Trackers)</a></li>
|
|
|
|
<li id="PropFilesLink"><a>_(Files)</a></li>
|
2009-11-23 23:16:17 +03:00
|
|
|
</ul>
|
|
|
|
<div class="clear"></div>
|
2009-12-05 19:09:18 +03:00
|
|
|
</div>
|