viewScroll.d.ts 313 B

123456789
  1. export interface UIViewScrollProvider {
  2. /**
  3. * Uses standard anchorScroll behavior
  4. *
  5. * Reverts [[$uiViewScroll]] back to using the core [`$anchorScroll`](http://docs.angularjs.org/api/ng.$anchorScroll)
  6. * service for scrolling based on the url anchor.
  7. */
  8. useAnchorScroll(): void;
  9. }