@kizmann/pico-js 1.0.9 → 1.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kizmann/pico-js",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "private": false,
@@ -211,7 +211,7 @@ export class Dom
211
211
  let parent = Dom.find(selector);
212
212
 
213
213
  if ( ! Any.isNull(context) ) {
214
- parent = Dom.find(context);
214
+ parent = Dom.find(context).find(selector);
215
215
  }
216
216
 
217
217
  parent.each((el) => {