Skip to content

Commit ace3202

Browse files
committed
lint fixes
1 parent 715b376 commit ace3202

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/dd-resizable-handle.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,9 @@ export class DDResizableHandle {
118118
this._mouseUp(this.mouseDownEvent);
119119
}
120120
}
121-
122-
123-
121+
122+
123+
124124
/** @internal */
125125
protected _triggerEvent(name: string, event: MouseEvent): DDResizableHandle {
126126
if (this.option[name]) this.option[name](event);

src/gridstack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1178,7 +1178,7 @@ export class GridStack {
11781178
*/
11791179
public removeWidget(els: GridStackElement, removeDOM = true, triggerEvent = true): GridStack {
11801180
if (!els) { console.error('Error: GridStack.removeWidget(undefined) called'); return this; }
1181-
1181+
11821182
GridStack.getElements(els).forEach(el => {
11831183
if (el.parentElement && el.parentElement !== this.el) return; // not our child!
11841184
let node = el.gridstackNode;

0 commit comments

Comments
 (0)