mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
update adjustments and ui (#384)
* 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
This commit is contained in:
@@ -494,7 +494,7 @@ JSONEditor.prototype = {
|
||||
return this.editors[path];
|
||||
},
|
||||
watch: function(path,callback) {
|
||||
this.watchlist = this.watchlist || {};
|
||||
this.watchlist = this.watchlist || {};
|
||||
this.watchlist[path] = this.watchlist[path] || [];
|
||||
this.watchlist[path].push(callback);
|
||||
|
||||
@@ -517,7 +517,7 @@ JSONEditor.prototype = {
|
||||
return this;
|
||||
},
|
||||
notifyWatchers: function(path) {
|
||||
if(!this.watchlist || !this.watchlist[path]) return this;
|
||||
if(!this.watchlist || !this.watchlist[path]) return this;
|
||||
for(var i=0; i<this.watchlist[path].length; i++) {
|
||||
this.watchlist[path][i]();
|
||||
}
|
||||
@@ -6284,7 +6284,7 @@ JSONEditor.AbstractTheme = Class.extend({
|
||||
return el;
|
||||
},
|
||||
getHeader: function(text) {
|
||||
var el = document.createElement('h3');
|
||||
var el = document.createElement('h4');
|
||||
if(text.innerHTML == ''){
|
||||
text.style.display = 'none';
|
||||
return text;
|
||||
|
Reference in New Issue
Block a user