mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 13:04:23 +00:00
- Still working on Web UI properties panel
This commit is contained in:
parent
30b5daaa2a
commit
3958c990a4
@ -7,6 +7,9 @@
|
||||
<file>webui/about.html</file>
|
||||
<file>webui/filters.html</file>
|
||||
<file>webui/transferlist.html</file>
|
||||
<file>webui/prop-general.html</file>
|
||||
<file>webui/prop-trackers.html</file>
|
||||
<file>webui/prop-files.html</file>
|
||||
<file>webui/properties.html</file>
|
||||
<file>webui/css/mocha.css</file>
|
||||
<file>webui/css/dynamicTable.css</file>
|
||||
|
1
src/webui/prop-files.html
Normal file
1
src/webui/prop-files.html
Normal file
@ -0,0 +1 @@
|
||||
CONTENT
|
1
src/webui/prop-general.html
Normal file
1
src/webui/prop-general.html
Normal file
@ -0,0 +1 @@
|
||||
CONTENT
|
1
src/webui/prop-trackers.html
Normal file
1
src/webui/prop-trackers.html
Normal file
@ -0,0 +1 @@
|
||||
CONTENT
|
@ -1,36 +1,44 @@
|
||||
<div>
|
||||
<div class="toolbarTabs">
|
||||
<!-- <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>
|
||||
<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 id="propertyTab"></div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
MochaUI.initializeTabs('propertiesTabs');
|
||||
MochaUI.updateContent({
|
||||
'element': $('properties'),
|
||||
'childElement': $('propertyTab'),
|
||||
'url': 'prop-general.html'
|
||||
});
|
||||
|
||||
$('PropGeneralLink').addEvent('click', function(e){
|
||||
MochaUI.updateContent({
|
||||
'element': $('propertyTab'),
|
||||
'url': 'pages/features-layout.html'
|
||||
'element': $('properties'),
|
||||
'childElement': $('propertyTab'),
|
||||
'url': 'prop-general.html'
|
||||
});
|
||||
});
|
||||
|
||||
$('PropTrackersLink').addEvent('click', function(e){
|
||||
MochaUI.updateContent({
|
||||
'element': $('propertyTab'),
|
||||
'url': 'pages/features-windows.html'
|
||||
'element': $('properties'),
|
||||
'childElement': $('propertyTab'),
|
||||
'url': 'prop-trackers.html'
|
||||
});
|
||||
});
|
||||
|
||||
$('PropFilesLink').addEvent('click', function(e){
|
||||
MochaUI.updateContent({
|
||||
'element': $('propertyTab'),
|
||||
'url': 'pages/features-general.html'
|
||||
'element': $('properties'),
|
||||
'childElement': $('propertyTab'),
|
||||
'url': 'prop-files.html'
|
||||
});
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user