Comparing version 0.8.13 to 0.8.15
/** | ||
* ctrling.js (c) 2022/23 Stefan Goessner | ||
* ver. 0.8.15 | ||
* @license MIT License | ||
@@ -29,2 +30,3 @@ */ | ||
this.#main = this.shadowRoot.querySelector('main'); | ||
console.log(this.#main) | ||
} | ||
@@ -135,3 +137,3 @@ | ||
if (this.#usrValueCallback) | ||
this.#usrValueCallback({ctrl:this}); // call initially once with empty arguments object ... | ||
this.#usrValueCallback({}); // call initially once with empty arguments object ... | ||
} | ||
@@ -202,7 +204,4 @@ | ||
if (this.#usrValueCallback !== undefined) { | ||
const that = this; | ||
console.log({ctrl:that, obj, member, value, section, elem}) | ||
this.#usrValueCallback({ctrl:that, obj, member, value, section, elem}); | ||
this.#usrValueCallback({obj, member, value, section, elem}); | ||
} | ||
return value; | ||
@@ -209,0 +208,0 @@ } |
{ | ||
"name": "ctrling", | ||
"version": "0.8.13", | ||
"version": "0.8.15", | ||
"description": "An appealing prototypical GUI for controlling your Web-App, JSON or JavaScript Object Values", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
4322924
31
616