Skip to content

Commit

Permalink
v0.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TahaSh committed Oct 8, 2024
1 parent 693e365 commit 2eb8993
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion dist/veloxi.js
Original file line number Diff line number Diff line change
Expand Up @@ -2213,7 +2213,11 @@ class xt {
const i = t.dataset.velViewId;
i && (this._handleRemoveView(i), t.querySelectorAll("*").forEach((s) => {
const n = s.dataset.velViewId;
n && this._handleRemoveView(n);
n && this._plugins.forEach((r) => {
if (!this._viewsPerPlugin.get(r.id)) return;
const u = this._getPluginViewById(r, n);
u && u.removeListeners();
});
}));
}), this._viewsToBeRemoved = []);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/veloxi.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "veloxi",
"author": "Taha Shashtari ([email protected])",
"version": "0.15.2",
"version": "0.15.3",
"private": false,
"type": "module",
"main": "./dist/veloxi.min.js",
Expand Down

0 comments on commit 2eb8993

Please sign in to comment.