- Docs: Mention lack of relative repo maintenance in issue template
- Linting (ESLint): As per latest ash-nazg - npm: Update devDeps.
This commit is contained in:
@@ -223,7 +223,7 @@ export class InsertElementCommand extends Command {
|
||||
}
|
||||
|
||||
this.parent = this.elem.parentNode;
|
||||
this.elem = this.elem.parentNode.removeChild(this.elem);
|
||||
this.elem = this.elem.remove();
|
||||
|
||||
if (handler) {
|
||||
handler.handleHistoryEvent(HistoryEventTypes.AFTER_UNAPPLY, this);
|
||||
@@ -280,7 +280,7 @@ export class RemoveElementCommand extends Command {
|
||||
|
||||
removeElementFromListMap(this.elem);
|
||||
this.parent = this.elem.parentNode;
|
||||
this.elem = this.parent.removeChild(this.elem);
|
||||
this.elem = this.elem.remove();
|
||||
|
||||
if (handler) {
|
||||
handler.handleHistoryEvent(HistoryEventTypes.AFTER_APPLY, this);
|
||||
|
||||
Reference in New Issue
Block a user