BUGFIX: Fix speed limit sliders initialization in Web UI

This commit is contained in:
Christophe Dumez
2010-08-15 07:41:30 +00:00
parent 9292fdc647
commit 0144611b9d
2 changed files with 5 additions and 0 deletions

View File

@@ -3,6 +3,7 @@
- BUGFIX: Fix about dialog layout
- BUGFIX: Remember previously selected paths in torrent creation dialog
- BUGFIX: Added missing right-click menu icon in Web UI
- BUGFIX: Fix speed limit sliders initialization in Web UI
* Tue Jul 27 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.3.0
- FEATURE: Simplified torrent root folder renaming/truncating (< v2.3.0 is no longer forward compatible)

View File

@@ -30,6 +30,8 @@ MochaUI.extend({
var tmp = data.toInt();
if(tmp > 0) {
maximum = tmp / 1024.
} else {
maximum = 0
}
}
// Get torrent upload limit
@@ -115,6 +117,8 @@ MochaUI.extend({
var tmp = data.toInt();
if(tmp > 0) {
maximum = tmp / 1024.
} else {
maximum = 0
}
}
// Get torrent download limit