1. 07 Jul, 2016 3 commits
  2. 06 Jul, 2016 5 commits
  3. 04 Jul, 2016 2 commits
  4. 02 Jul, 2016 1 commit
  5. 01 Jul, 2016 7 commits
  6. 30 Jun, 2016 10 commits
  7. 28 Jun, 2016 9 commits
  8. 27 Jun, 2016 3 commits
    • Adam Barth's avatar
      Improve test coverage for gestures.dart (#4773) · bb0c41f2
      Adam Barth authored
      This patch adds tests for some code paths we weren't hitting before and removes
      some dead code that couldn't be tested because it was unreachable.
      bb0c41f2
    • Adam Barth's avatar
      Add some missing docs (#4772) · 2898768d
      Adam Barth authored
      These docs complete the dartdocs for their respective libraries.
      2898768d
    • Adam Barth's avatar
      Change how navigator prevents redundant operations (#4769) · 2af668f8
      Adam Barth authored
      * Change how navigator prevents redundant operations
      
      Instead of requiring transactions, we now cancel all active pointers that are
      interacting with the navigator and absorb future pointers until we get a chance
      to build. This approach isn't perfect (e.g., events that trigger off the
      cancelled pointers could still interact with the navigator), but it should be
      better than the current transaction-based approach.
      
      Fixes #4716
      
      * Remove openTransaction
      
      * test
      
      * fixup
      2af668f8