jquery.initialize icon indicating copy to clipboard operation
jquery.initialize copied to clipboard

Refactor find/match algorithm

Open bezborodow opened this issue 1 year ago • 0 comments

While investigating #42, I noticed that our find/match algorithm could be improved by using closest.

For example:

const element = addedNode.closest(selector)
  || addedNode.querySelector(selector);

bezborodow avatar May 31 '23 02:05 bezborodow