Fixing Safari Support (#222)

* Switch to non-minified JSON Editor Lib

* Fixing Safari Support
This commit is contained in:
b1rdhous3
2016-09-04 16:27:48 +02:00
committed by redPanther
parent 49d3d35de1
commit b99e75d7e4
3 changed files with 7 additions and 19 deletions

View File

@@ -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;