Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Added example to $anchorScroll documentation. #2932

Closed
wants to merge 2 commits into from
Closed

Added example to $anchorScroll documentation. #2932

wants to merge 2 commits into from

Conversation

benlesh
Copy link
Contributor

@benlesh benlesh commented Jun 11, 2013

Per a request made by Peter Bacon Darwin here: http://www.benlesh.com/2013/02/angular-js-scrolling-to-element-by-id.html?showComment=1370941217879#c8718313084813008967

I've added an example of basic usage. If more detail is desired, please let me know.

Per a request made by Peter Bacon Darwin here:  http://www.benlesh.com/2013/02/angular-js-scrolling-to-element-by-id.html?showComment=1370941217879#c8718313084813008967

I've added an example of basic usage.  If more detail is desired, please let me know.
@benlesh
Copy link
Contributor Author

benlesh commented Jun 11, 2013

This was my first time adding documentation in this format. I wasn't sure if I could add more than one example, so I just added the most basic scenario.

I've removed the end-to-end testing from the example given as it was breaking the build. I'm not sure how to reference the window object inside of the scenario.

Here's what I removed:


     <file name="scenario.js">
       it('should scroll to the bottom', function() {
         var win = element(window),
             initialScrollTop = win.scrollTop();
         
         element('#top').click();    
       
         var currentScrollTop = win.scrollTop(),
             documentBottom = currentScrollTop + win.height(),
             elemTop = element('#bottom').offset().top,
             elemBottom = elemTop + element('bottom').height();
       
         var isInView = (elemBottom <= documentBottom) && (elemTop >= currentScrollTop);
       
         expect(initialScrollTop).toBeLessThan(currentScrollTop);
         expect(isInView).toEqual(true);
       });
     </file>
@petebacondarwin
Copy link
Contributor

@benlesh
Copy link
Contributor Author

benlesh commented Jun 12, 2013

Nice. Why is window not available in the scenario, but document.body is? Is it because it's running in a tool outside of a browser?

@petebacondarwin
Copy link
Contributor

PR Checklist (Docs-only fix)

  • PR is rebased against recent master
  • PR is squashed into one commit per logical change
  • PR's commit messages are descriptive and allows us to autogenerate release notes (required commit message format)
  • All changes requested in review have been implemented

@petebacondarwin
Copy link
Contributor

Anyone got a way to e2e test this?

@benlesh
Copy link
Contributor Author

benlesh commented Jul 18, 2013

Perhaps the var win = document.body line needs to be var win = element('body'). I'm not sure how the example e2e tests get run, but it looks okay other than that part. How much more "end to end" can you get with an anchor scroll?

@petebacondarwin
Copy link
Contributor

I can't work out how to test this in e2e. If no one else has any ideas then I'll just merge the example as-is without an e2e test, since it does work in practice.

@btford
Copy link
Contributor

btford commented Aug 21, 2013

We should merge this as-is.

@petebacondarwin
Copy link
Contributor

Merged without e2e test as 7ed5599 and e7cfa5c

@benlesh
Copy link
Contributor Author

benlesh commented Sep 5, 2013

Checked it out this morning. It doesn't work and it looks crazy. I just submitted a pull request with fixes for that: #3890

@thanhthang20
Copy link

Hi Ben. Very helpful, but in "Scrolling To An Element By ID", which scroll will be effected if we have many div, every div have a scroll in the scope of 'MainCtrl'.
Ex:

image

@benlesh
Copy link
Contributor Author

benlesh commented Nov 4, 2013

@thanhthang20 Well, this isn't really a place for Q/A... but to answer your question, it should scroll any divs it needs to scroll to get to the element in question, since it's calling scrollIntoView() on the element.

@thanhthang20
Copy link

@Blesh Thanks so much, You are very nice!

@dailystore
Copy link

It seems the anchorScroller() doesn't work with latest angularJS 1.2.0 and 1.2.1 either. Haven't you tried it yet?

@kevinSuttle
Copy link

Am I the only one who gets no actual scrolling? The page just jumps, even in the Angular docs.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants