mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
Fixing Safari Support (#222)
* Switch to non-minified JSON Editor Lib * Fixing Safari Support
This commit is contained in:
parent
49d3d35de1
commit
b99e75d7e4
@ -17,8 +17,9 @@
|
||||
|
||||
|
||||
<script>
|
||||
function removeAdvanced(obj,searchStack = [])
|
||||
function removeAdvanced(obj)
|
||||
{
|
||||
searchStack = [];
|
||||
$.each(obj, function(key, val) {
|
||||
if ( typeof(val) == 'object' )
|
||||
{
|
||||
@ -41,7 +42,7 @@
|
||||
// remove all "advanced" options from schema
|
||||
//removeAdvanced(parsedConfSchemaJSON); // not working atm
|
||||
//console.log(JSON.stringify(parsedConfSchemaJSON));
|
||||
|
||||
|
||||
schema_smoothing = parsedConfSchemaJSON.properties.smoothing;
|
||||
schema_kodiVideoChecker = parsedConfSchemaJSON.properties.kodiVideoChecker;
|
||||
schema_initialEffect = parsedConfSchemaJSON.properties.initialEffect;
|
||||
|
@ -1,10 +1,10 @@
|
||||
|
||||
function bindNavToContent(containerId, fileName, loadNow=false)
|
||||
function bindNavToContent(containerId, fileName, loadNow)
|
||||
{
|
||||
$("#page-wrapper").off();
|
||||
$(containerId).on("click", function() {
|
||||
$("#page-wrapper").load("/content/"+fileName+".html");
|
||||
});
|
||||
});
|
||||
if (loadNow)
|
||||
{
|
||||
$("#page-wrapper").load("/content/"+fileName+".html");
|
||||
|
@ -30,6 +30,7 @@
|
||||
"main_menu_support_token" : "Hilfe",
|
||||
"main_menu_update_token" : "Update",
|
||||
"main_menu_system_token" : "System",
|
||||
"main_menu_input_selection_token" : "Eingabeauswahl",
|
||||
"main_menu_general_conf_token":"Allgemein",
|
||||
"remote_colors_label_color":"Farbe: ",
|
||||
"remote_colors_button_reset":"Farbe zurücksetzen",
|
||||
@ -70,21 +71,7 @@
|
||||
"update_button_install" : "Installieren",
|
||||
"update_button_changelog" : "Zeige Änderungsprotokoll",
|
||||
"update_label_type" : "Art:",
|
||||
"remote_general_conf_intro" : "Hier kannst du allgemeine Einstellungen von Hyperion vornehmen.",
|
||||
"generalConfForm_jsonform-0-elt-logger.level" : "Stufe Logging",
|
||||
"generalConfForm_jsonform-0-elt-jsonServer.port" : "Port",
|
||||
"generalConfForm_jsonform-0-elt-protoServer.port" : "Port",
|
||||
"generalConfForm_jsonform-0-elt-boblightServer.enable" : "Aktivieren",
|
||||
"generalConfForm_jsonform-0-elt-boblightServer.port" : "Port",
|
||||
"generalConfForm_jsonform-0-elt-boblightServer.priority" : "Prioität",
|
||||
"generalConfForm_jsonform-0-elt-udpListener.address" : "IP-Addresse",
|
||||
"generalConfForm_jsonform-0-elt-udpListener.enable" : "Aktivieren",
|
||||
"generalConfForm_jsonform-0-elt-udpListener.port" : "Port",
|
||||
"generalConfForm_jsonform-0-elt-udpListener.priority" : "Prioität",
|
||||
"generalConfForm_jsonform-0-elt-udpListener.shared" : "Shared",
|
||||
"generalConfForm_jsonform-0-elt-udpListener.timeout" : "Timeout",
|
||||
"generalConfForm_jsonform-0-elt-webConfig.document_root" : "Root Verzeichnis",
|
||||
"generalConfForm_jsonform-0-elt-webConfig.enable" : "Aktivieren"
|
||||
"remote_general_conf_intro" : "Hier kannst du allgemeine Einstellungen von Hyperion vornehmen."
|
||||
},
|
||||
"regex": [
|
||||
["^Something at start of text", ""],
|
||||
|
Loading…
Reference in New Issue
Block a user