refactoring

This commit is contained in:
frankknoll
2022-03-15 09:04:57 +01:00
parent 35e97dc52e
commit dd4d521918
2 changed files with 6 additions and 6 deletions

View File

@@ -11,5 +11,9 @@ class UIUtils {
chartViewElement: chartViewElement,
canvas: chartViewElement.querySelector(".canvas")
};
}
}
static getSelectedOption(selectElement) {
return selectElement.options[selectElement.selectedIndex];
}
}