Skip to content

Commit 2061325

Browse files
author
hikki
committed
v3
1 parent 378e58b commit 2061325

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

resources/assets/component.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ window.ComponentDot = class {
316316
}
317317
this.SELECT_COVER_DOM.append(...elements);
318318
}
319-
}
319+
};
320320

321321
window.ComponentCascadeDot = class {
322322
MODE = {
@@ -709,7 +709,7 @@ window.ComponentCascadeDot = class {
709709
if (to_first_index !== null) this.STACKS[stack].scrollTop = to_first_index * 27;
710710
this.checkAll(stack + 1, children, check);
711711
}
712-
}
712+
};
713713

714714
window.ComponentLine = class {
715715
constructor(name, columns, data, options = {}) {
@@ -929,7 +929,7 @@ window.ComponentLine = class {
929929
object.DATA_INPUT.value = JSON.stringify(object.DATA);
930930
});
931931
}
932-
}
932+
};
933933

934934
window.ComponentPlane = class {
935935
constructor(url, xhr = {}, options = {}) {
@@ -1023,7 +1023,7 @@ window.ComponentPlane = class {
10231023
}
10241024
});
10251025
}
1026-
}
1026+
};
10271027

10281028
window.ComponentSortable = class {
10291029
constructor(list, callback = null) {
@@ -1153,7 +1153,7 @@ window.ComponentSortable = class {
11531153
getDragY(e) {
11541154
return e.touches ? (e.touches[0] || e.changedTouches[0]).pageY : e.pageY;
11551155
}
1156-
}
1156+
};
11571157

11581158
window.ComponentCascadeLine = class {
11591159
constructor(name, select, url) {
@@ -1681,5 +1681,5 @@ window.ComponentCascadeLine = class {
16811681
this.STACKS[pick.stack].scrollTop = pick.index * 27;
16821682
DOM.click();
16831683
}
1684-
}
1684+
};
16851685

0 commit comments

Comments
 (0)