@webqit/oohtml 4.1.1-debug.1 → 4.1.1-debug.2
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 +1 -1
- package/dist/main.js.map +2 -2
- package/dist/main.lite.js +13 -13
- package/dist/main.lite.js.map +2 -2
- package/package.json +1 -1
- package/src/html-imports/_HTMLImportElement.js +2 -1
package/package.json
CHANGED
|
@@ -154,7 +154,7 @@ export default function() {
|
|
|
154
154
|
* @return void
|
|
155
155
|
*/
|
|
156
156
|
fill( slottableElements ) {
|
|
157
|
-
console.log('////////--///////',
|
|
157
|
+
console.log('////////--///////', slottableElements);
|
|
158
158
|
|
|
159
159
|
if ( Array.isArray( slottableElements ) ) { slottableElements = new Set( slottableElements ) }
|
|
160
160
|
// This state must be set before the diffing below and the serialization done at createAnchorNode()
|
|
@@ -191,6 +191,7 @@ export default function() {
|
|
|
191
191
|
_( slottableElementClone ).set( 'slot@imports', this.el );
|
|
192
192
|
this[ '#' ].slottedElements.add( slottableElementClone );
|
|
193
193
|
this[ '#' ].anchorNode.before( slottableElementClone );
|
|
194
|
+
console.log('////////---////---///', slottableElementClone);
|
|
194
195
|
} );
|
|
195
196
|
} );
|
|
196
197
|
}
|