mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-01 13:18:06 -06:00
- Oops, forgot to commit those
This commit is contained in:
37
src/webui/properties.html
Normal file
37
src/webui/properties.html
Normal file
@@ -0,0 +1,37 @@
|
||||
<div>
|
||||
<!-- <div style="float:right;padding-top:3px;"><img src="images/icons/help.gif" width="16" height="16" alt="Help" /></div> -->
|
||||
<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 id="propertyTab"></div>-->
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
MochaUI.initializeTabs('propertiesTabs');
|
||||
|
||||
$('PropGeneralLink').addEvent('click', function(e){
|
||||
MochaUI.updateContent({
|
||||
'element': $('propertyTab'),
|
||||
'url': 'pages/features-layout.html'
|
||||
});
|
||||
});
|
||||
|
||||
$('PropTrackersLink').addEvent('click', function(e){
|
||||
MochaUI.updateContent({
|
||||
'element': $('propertyTab'),
|
||||
'url': 'pages/features-windows.html'
|
||||
});
|
||||
});
|
||||
|
||||
$('PropFilesLink').addEvent('click', function(e){
|
||||
MochaUI.updateContent({
|
||||
'element': $('propertyTab'),
|
||||
'url': 'pages/features-general.html'
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
Reference in New Issue
Block a user