mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-14 02:55:55 +00:00
fix forced selection of dropboxes (functions.js:dropboxSelect())
This commit is contained in:
@@ -744,3 +744,12 @@ function showBlockElement(id) {
|
||||
function hideParentElement(e) {
|
||||
e.parentNode.style.display = "none";
|
||||
}
|
||||
|
||||
function dropboxSelect(e, v) {
|
||||
for (i = 0; i < e.length; i++) {
|
||||
if (e[i].value == v) {
|
||||
e.selectedIndex = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user