We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
declare class Infinite { constructor(items : ItemManager, options?: { isEqualSize?: boolean, isConstantSize?: boolean, append?: (event?: {cache?: object}) => any, append?: (event?: {cache?: object, fit: bool}) => any, recycle?: (event?: any) => any, }); scroll(scrollPos: number, isAppend: boolean): void; }
declare class Infinite { constructor(items : ItemManager, options?: { isEqualSize?: boolean, isConstantSize?: boolean, append?: (event?: {cache: object[]}) => any, append?: (event?: {cache: object[], fit: bool}) => any, recycle?: (event?: any) => any, }); scroll(scrollPos: number): void; }
The text was updated successfully, but these errors were encountered:
@Younkue is change the second parameter from being removed scroll? Why it is removed?
scroll
Sorry, something went wrong.
@jongmoon isAppend is now a useless parameter.
isAppend
The scroll now checks all directions.
feat(LayoutManager): add LayoutManager module and fix Infinite scroll (…
e410c6e
…#197) * fix(GridLayout): fix decimal error * fix(Layouts): remove startIndex and endIndex * feat(LayoutManager): add LayoutManager module * fix(Infinite): fix scroll method * feat(DOMRenderer): add container option and remove isOverflowScroll * feat(InfiniteGrid): add useFit option and fix moveTo method * fix(Infinite): fix scroll and cursor * test(InfiniteGrid): test LayoutManger and Infinite Close #135 Close #173 Close #185 Close #186 Close #192
No branches or pull requests
Description
Steps to check or reproduce
The text was updated successfully, but these errors were encountered: