mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
41671ad82c
* update
* update
* testit
* Revert "testit"
This reverts commit b1cc645161
.
* update schema
* update
* add adjustment to serverinfo
* remove Adjustbool
* remove v4l2only
* fix json check for create effect
* update deb
* update
* update remote adjust
* update
* add eff schemas
61 lines
2.1 KiB
JavaScript
61 lines
2.1 KiB
JavaScript
$(document).ready( function() {
|
|
performTranslation();
|
|
var conf_editor_v4l2 = null;
|
|
var conf_editor_fg = null;
|
|
|
|
if(showOptHelp)
|
|
{
|
|
//fg
|
|
$('#conf_cont').append(createRow('conf_cont_fg'))
|
|
$('#conf_cont_fg').append(createOptPanel('fa-camera', $.i18n("edt_conf_fg_heading_title"), 'editor_container_fg', 'btn_submit_fg'));
|
|
$('#conf_cont_fg').append(createHelpTable(schema.framegrabber.properties, $.i18n("edt_conf_fg_heading_title")));
|
|
|
|
//v4l
|
|
$('#conf_cont').append(createRow('conf_cont_v4l'))
|
|
$('#conf_cont_v4l').append(createOptPanel('fa-camera', $.i18n("edt_conf_v4l2_heading_title"), 'editor_container_v4l2', 'btn_submit_v4l2'));
|
|
$('#conf_cont_v4l').append(createHelpTable(schema.grabberV4L2.items.properties, $.i18n("edt_conf_v4l2_heading_title")));
|
|
}
|
|
else
|
|
{
|
|
$('#conf_cont').addClass('row');
|
|
$('#conf_cont').append(createOptPanel('fa-camera', $.i18n("edt_conf_fg_heading_title"), 'editor_container_fg', 'btn_submit_fg'));
|
|
$('#conf_cont').append(createOptPanel('fa-camera', $.i18n("edt_conf_v4l2_heading_title"), 'editor_container_v4l2', 'btn_submit_v4l2'));
|
|
}
|
|
|
|
//fg
|
|
conf_editor_fg = createJsonEditor('editor_container_fg', {
|
|
framegrabber: schema.framegrabber
|
|
}, true, true);
|
|
|
|
conf_editor_fg.on('change',function() {
|
|
conf_editor_fg.validate().length ? $('#btn_submit_fg').attr('disabled', true) : $('#btn_submit_fg').attr('disabled', false);
|
|
});
|
|
|
|
$('#btn_submit_fg').off().on('click',function() {
|
|
requestWriteConfig(conf_editor_fg.getValue());
|
|
});
|
|
|
|
//vl4
|
|
conf_editor_v4l2 = createJsonEditor('editor_container_v4l2', {
|
|
grabberV4L2 : schema.grabberV4L2
|
|
}, true, true);
|
|
|
|
conf_editor_v4l2.on('change',function() {
|
|
conf_editor_v4l2.validate().length ? $('#btn_submit_v4l2').attr('disabled', true) : $('#btn_submit_v4l2').attr('disabled', false);
|
|
});
|
|
|
|
$('#btn_submit_v4l2').off().on('click',function() {
|
|
requestWriteConfig(conf_editor_v4l2.getValue());
|
|
});
|
|
|
|
//create introduction
|
|
if(showOptHelp)
|
|
{
|
|
createHint("intro", $.i18n('conf_grabber_fg_intro'), "editor_container_fg");
|
|
createHint("intro", $.i18n('conf_grabber_v4l_intro'), "editor_container_v4l2");
|
|
}
|
|
|
|
removeOverlay();
|
|
});
|
|
|