mirror of
https://git.leinelab.org/Mal/mr-crocs-adventures.git
synced 2025-09-11 02:57:36 +02:00
UI for adding rows and columns.
This commit is contained in:
10
tilorswift/js/events/TilorswiftAddRowsEvent.js
Normal file
10
tilorswift/js/events/TilorswiftAddRowsEvent.js
Normal file
@@ -0,0 +1,10 @@
|
||||
import TilorswiftEvent from "./TilorswiftEvent.js";
|
||||
|
||||
export default class TilorswiftAddRowsEvent extends Event
|
||||
{
|
||||
constructor(beforeRow, rowCount) {
|
||||
super(TilorswiftEvent.ADD_ROWS);
|
||||
this.beforeRow = beforeRow;
|
||||
this.rowCount = rowCount;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user