mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 08:48:07 -06:00
Fix bug where input wouldn't always be focused
This commit is contained in:
@@ -35,10 +35,7 @@
|
|||||||
var uriCategoryName = safeTrim(new URI().getData('categoryName'));
|
var uriCategoryName = safeTrim(new URI().getData('categoryName'));
|
||||||
var uriSavePath = safeTrim(new URI().getData('savePath'));
|
var uriSavePath = safeTrim(new URI().getData('savePath'));
|
||||||
|
|
||||||
if (uriAction === "create") {
|
if (uriAction === "edit") {
|
||||||
$('categoryName').focus();
|
|
||||||
}
|
|
||||||
else if (uriAction === "edit") {
|
|
||||||
if (!uriCategoryName)
|
if (!uriCategoryName)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
@@ -47,6 +44,9 @@
|
|||||||
$('savePath').set('value', escapeHtml(uriSavePath));
|
$('savePath').set('value', escapeHtml(uriSavePath));
|
||||||
$('savePath').focus();
|
$('savePath').focus();
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
$('categoryName').focus();
|
||||||
|
}
|
||||||
|
|
||||||
$('categoryNameButton').addEvent('click', function(e) {
|
$('categoryNameButton').addEvent('click', function(e) {
|
||||||
new Event(e).stop();
|
new Event(e).stop();
|
||||||
|
|||||||
Reference in New Issue
Block a user