1
0
mirror of https://github.com/jaandrle/deka-dom-el synced 2025-12-15 05:43:45 +01:00

issignal

This commit is contained in:
2025-03-06 11:44:13 +01:00
parent 6c297672c1
commit da4e3e52d9
14 changed files with 32 additions and 86 deletions

7
dist/dde.js vendored
View File

@@ -154,11 +154,6 @@ var scope = {
pop() {
if (scopes.length === 1) return;
return scopes.pop();
},
isolate(fn) {
this.push({ prevent: true });
fn();
this.pop();
}
};
function append(...els) {
@@ -624,7 +619,7 @@ on.disconnectedAsAbort = function(host) {
const a = new AbortController();
store_abort.set(host, a);
host(on.disconnected(() => a.abort()));
return a;
return a.signal;
};
var els_attribute_store = /* @__PURE__ */ new WeakSet();
on.attributeChanged = function(listener, options) {