lordwelch 6fab6022d0 Remove grab
Switch to using bootstrap-table
Add DownThemAll plugin
Remove Firefox plugin
2021-01-09 16:36:18 -08:00

12 lines
214 B
TypeScript

import { TableEvents } from "./tableevents";
import { CellTypes } from "./constants";
export class VirtualTable extends TableEvents {
init() {
this.resized();
}
}
Object.assign(VirtualTable, CellTypes);