on-codemerge
Version:
A WYSIWYG editor for on-codemerge is a user-friendly interface that allows users to edit and view their code in real time, exactly as it will appear in the final product
18 lines (17 loc) • 501 B
JavaScript
var a = Object.defineProperty;
var l = (t, e, o) => e in t ? a(t, e, { enumerable: !0, configurable: !0, writable: !0, value: o }) : t[e] = o;
var r = (t, e, o) => l(t, typeof e != "symbol" ? e + "" : e, o);
import { TableOperations as s } from "../services/TableOperations.mjs";
class n {
constructor(e, o) {
r(this, "table");
r(this, "row");
this.table = e, this.row = o.parentElement;
}
execute() {
s.deleteRow(this.table, this.row);
}
}
export {
n as DeleteRowCommand
};