feat: ✨ plays radio stream from url
feat: ✨ api structure
This commit is contained in:
parent
c908fdc097
commit
8f2b6f1e3f
17 changed files with 3534 additions and 0 deletions
12
front/dist/assets/dioxus/snippets/dioxus-web-5003c04febee1e56/inline1.js
vendored
Normal file
12
front/dist/assets/dioxus/snippets/dioxus-web-5003c04febee1e56/inline1.js
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
|
||||
export function get_select_data(select) {
|
||||
let values = [];
|
||||
for (let i = 0; i < select.options.length; i++) {
|
||||
let option = select.options[i];
|
||||
if (option.selected) {
|
||||
values.push(option.value.toString());
|
||||
}
|
||||
}
|
||||
|
||||
return values;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue