You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/infinitegrid/package.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@egjs/infinitegrid",
3
-
"version": "4.12.0",
3
+
"version": "4.13.0-beta.8",
4
4
"description": "A module used to arrange elements including content infinitely according to grid type. With this module, you can implement various grids composed of different card elements whose sizes vary. It guarantees performance by maintaining the number of DOMs the module is handling under any circumstance",
Copy file name to clipboardExpand all lines: packages/infinitegrid/src/ScrollManager.ts
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -130,6 +130,9 @@ export class ScrollManager extends Component<ScrollManagerEvents> {
130
130
eventTarget.scrollTop+=y;
131
131
}
132
132
}
133
+
/**
134
+
* @return Returns true if scrollOffset or contentSize has changed, otherwise returns false. <ko>scrollOffset 또는 contentSize가 변화가 있으면 true 아니면 false를 반환한다.</ko>
135
+
*/
133
136
publicresize(){
134
137
constscrollContainer=this.scrollContainer;
135
138
consthorizontal=this.options.horizontal;
@@ -139,6 +142,9 @@ export class ScrollManager extends Component<ScrollManagerEvents> {
0 commit comments