openwebrxplus/htdocs/plugins/receiver/example_theme/example_theme.js

15 lines
298 B
JavaScript

/*
* example plugin, creating a new theme for OpenWebRx+
*/
// Add new entry in the Theme selectbox
$('#openwebrx-themes-listbox').append(
$('<option>').val(
// give it a value. you will need this for the css styles
"eye-piercer"
).text(
// lets name it
'Eye-Piercer'
)
);