How to use the react-scrollbars-custom.computeThumbOffset function in react-scrollbars-custom

To help you get started, we’ve selected a few react-scrollbars-custom examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github xobotyi / react-scrollbars-custom / tests_old / Scrollbar / staticMethods.js View on Github external
it("should properly calculate values", () => {
                expect(Scrollbar.computeThumbOffset(100, 50, 200, 100, 50)).toBe(25);
                expect(Scrollbar.computeThumbOffset(100, 50, 200, 100, 0)).toBe(0);
                expect(Scrollbar.computeThumbOffset(0, 0, 0, 0, 0)).toBe(0);
            });
        });
github xobotyi / react-scrollbars-custom / tests_old / Scrollbar / staticMethods.js View on Github external
it("should properly calculate values", () => {
                expect(Scrollbar.computeThumbOffset(100, 50, 200, 100, 50)).toBe(25);
                expect(Scrollbar.computeThumbOffset(100, 50, 200, 100, 0)).toBe(0);
                expect(Scrollbar.computeThumbOffset(0, 0, 0, 0, 0)).toBe(0);
            });
        });
github xobotyi / react-scrollbars-custom / tests_old / Scrollbar / staticMethods.js View on Github external
it("should properly calculate values", () => {
                expect(Scrollbar.computeThumbOffset(100, 50, 200, 100, 50)).toBe(25);
                expect(Scrollbar.computeThumbOffset(100, 50, 200, 100, 0)).toBe(0);
                expect(Scrollbar.computeThumbOffset(0, 0, 0, 0, 0)).toBe(0);
            });
        });