asd
This commit is contained in:
@@ -1 +1 @@
|
|||||||
1.1.32
|
1.1.33
|
||||||
@@ -415,6 +415,14 @@
|
|||||||
if (target.components) target.components(viewHtml);
|
if (target.components) target.components(viewHtml);
|
||||||
if (target.set) target.set('content', viewHtml);
|
if (target.set) target.set('content', viewHtml);
|
||||||
target.trigger && target.trigger('change:content');
|
target.trigger && target.trigger('change:content');
|
||||||
|
const reapply = () => {
|
||||||
|
try {
|
||||||
|
const current = String(target.view.el.innerHTML || '').trim();
|
||||||
|
if (current !== viewHtml) target.view.el.innerHTML = viewHtml;
|
||||||
|
} catch {}
|
||||||
|
};
|
||||||
|
setTimeout(reapply, 0);
|
||||||
|
setTimeout(reapply, 60);
|
||||||
} catch {} finally {
|
} catch {} finally {
|
||||||
syncing.delete(target);
|
syncing.delete(target);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user