@webqit/oohtml 4.1.0 → 4.1.1-debug.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/html-imports.js +1 -1
- package/dist/html-imports.js.map +2 -2
- package/dist/main.js +11 -11
- package/dist/main.js.map +2 -2
- package/dist/main.lite.js +1 -1
- package/dist/main.lite.js.map +2 -2
- package/package.json +1 -1
- package/src/html-imports/index.js +1 -0
package/package.json
CHANGED
|
@@ -165,6 +165,7 @@ function realtime( config ) {
|
|
|
165
165
|
record.exits.forEach( node => handleRealtime( node, false, record ) );
|
|
166
166
|
}, { live: true, subtree: 'cross-roots', timing: 'sync' } );
|
|
167
167
|
function handleRealtime( entry, connectedState ) {
|
|
168
|
+
console.log('///////////////', entry, connectedState);
|
|
168
169
|
const elInstance = HTMLImportElement.instance( entry );
|
|
169
170
|
if ( connectedState ) { elInstance[ '#' ].connectedCallback(); }
|
|
170
171
|
else { elInstance[ '#' ].disconnectedCallback(); }
|