scottohara/loot

View on GitHub
src/og-components/og-view-scroll/services/og-view-scroll.ts

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export default class OgViewScrollService {
    public constructor(
        private readonly $anchorScroll: angular.IAnchorScrollService,
    ) {}

    public scrollTo(anchor: "bottom" | "top"): void {
        this.$anchorScroll(anchor);
    }
}

OgViewScrollService.$inject = ["$anchorScroll"];