1. 13 May, 2015 3 commits
  2. 12 May, 2015 4 commits
  3. 11 May, 2015 3 commits
  4. 10 May, 2015 2 commits
  5. 08 May, 2015 2 commits
  6. 07 May, 2015 2 commits
  7. 06 May, 2015 1 commit
  8. 24 Apr, 2015 1 commit
  9. 26 Mar, 2015 2 commits
  10. 21 Mar, 2015 1 commit
  11. 16 Mar, 2015 1 commit
  12. 10 Mar, 2015 1 commit
  13. 09 Mar, 2015 3 commits
  14. 07 Mar, 2015 4 commits
  15. 06 Mar, 2015 1 commit
  16. 04 Mar, 2015 1 commit
  17. 03 Mar, 2015 4 commits
  18. 02 Mar, 2015 2 commits
  19. 01 Mar, 2015 2 commits
    • Caden Lovelace's avatar
      Handle multiple zero-offset Scrollspy elements. · a1aa0f8a
      Caden Lovelace authored
      When the first two elements in a scrollspy content block have a document
      offset of zero (i.e. they're hard against the top of the page),
      Scrollspy would switch between them on every scroll event.
      
      This could happen, for example, in a system of nested sections:
      
      ```
      <section id="animals">
        <section id="dogs">
      	Content
        </section>
      </section>
      ```
      
      This ocurred because Scrollspy's check to see if it's at the end of the
      array of sections uses `!arr[index]`. This misses the case where
      `arr[index]` does exist and is zero.
      
      This commit explicitly checks the array bounds.
      a1aa0f8a
    • Heinrich Fenkart's avatar
      Unit tests: Only display fixture on-screen for iOS · 20fb55a8
      Heinrich Fenkart authored
      Since only on iOS tests fail when the fixture is displayed off-screen, see https://travis-ci.org/twbs/bootstrap/jobs/52605742
      20fb55a8