@qualweb/qw-element
Advanced tools
Comparing version 0.1.23 to 0.1.24
@@ -149,3 +149,4 @@ "use strict"; | ||
if (fullElement) { | ||
let children = this.element.children; | ||
const selector = this.getElementSelector(); | ||
let children = this.element.querySelectorAll(selector + ' *'); | ||
let attributeArray = []; | ||
@@ -152,0 +153,0 @@ for (let child of children) { |
{ | ||
"name": "@qualweb/qw-element", | ||
"version": "0.1.23", | ||
"version": "0.1.24", | ||
"description": "Utilities module for qualweb", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -170,3 +170,4 @@ class QWElement { | ||
if (fullElement) { | ||
let children = this.element.children; | ||
const selector = this.getElementSelector(); | ||
let children = this.element.querySelectorAll(selector + ' *'); | ||
let attributeArray: any=[]; | ||
@@ -173,0 +174,0 @@ for(let child of children){ |
Sorry, the diff of this file is not supported yet
38329
883