Update style modifier for new structure

pull/19210/head
wenincode 1 year ago
parent 5a66bde6d4
commit 9315fe3c8c

@ -40,15 +40,17 @@ export default class StyleModifier extends Modifier {
this._oldStyles = new Set(newStyles.map((e) => e[0]));
}
didReceiveArguments() {
if (typeof this.args.named.delay !== 'undefined') {
modify(element, positional, named) {
this.element = element;
if (typeof named.delay !== 'undefined') {
setTimeout((_) => {
if (typeof this !== this.args.positional[0]) {
this.setStyles(this.args.positional[0]);
if (typeof this !== positional[0]) {
this.setStyles(positional[0]);
}
}, this.args.named.delay);
}, named?.delay);
} else {
this.setStyles(this.args.positional[0]);
this.setStyles(positional[0]);
}
}
}

Loading…
Cancel
Save