1. 19 Aug, 2015 8 commits
  2. 18 Aug, 2015 5 commits
  3. 17 Aug, 2015 2 commits
  4. 14 Aug, 2015 6 commits
  5. 13 Aug, 2015 4 commits
    • Randall Leeds's avatar
      Switch to scroll-into-view · 9cfad021
      Randall Leeds authored
      New version released has a my fix for height 100% html and body tags.
      Restores scroll-to-annotation in PDFs.
      9cfad021
    • Randall Leeds's avatar
      Give the bucket indicators an explicit height · 2e09b261
      Randall Leeds authored
      This makes the code easier to understand because it makes explicit
      the relationship to the line height of the label.
      2e09b261
    • Randall Leeds's avatar
      Improve use of BucketBar constants · cc81396f
      Randall Leeds authored
      Close #2421
      cc81396f
    • Randall Leeds's avatar
      Improve symmetry for AnnotationSync · 50775462
      Randall Leeds authored
      This change simplifies the AnnotationSync events and improves the
      frame symmetry by giving the guest its own AnnotationSync setup
      function, alongside its AnnotationUISync setup, that mirrors the
      way its handled in the widget.
      
      Previously, the `loadAnnotations` and `deleteAnnotations` events
      were treated specially by AnnotationSync so that it didn't cause
      endless loops. Instead, fully embrace the fact that the guest is
      not responsible for loading or deleting annotations.
      
      - Remove the setupAnnotation and deleteAnnotation methods, as they are
        no longer used.
      
      - Factor out everything but the event publication of deleteAnnotation
        into a detach method that is the inverse of the anchor method.
      
      - Subscribe to annotationsLoaded and annotationDeleted and invoke anchor
        and detach accordingly.
      50775462
  6. 12 Aug, 2015 5 commits
    • Randall Leeds's avatar
      Symmetry in AnnotationSync for loadAnnotations · c9544eff
      Randall Leeds authored
      Like all the other calls, this should invoke its callback.
      c9544eff
    • Randall Leeds's avatar
      Emit a sync event from AnnotationSync · 57c4253c
      Randall Leeds authored
      This ensures there's a digest cycle on the angular side after
      the client state is synchronized and brings this into symmetry
      with the other RPC calls defined by AnnotationSync.
      57c4253c
    • Randall Leeds's avatar
      Don't call loadMore except from stream · 35a8ec1f
      Randall Leeds authored
      This causes unnecessary network traffic and momentarily blanks the
      ephemeral properties of the annotation set on the client.
      35a8ec1f
    • Randall Leeds's avatar
      Refactor anchoring interface and sorting · 6e41b134
      Randall Leeds authored
      Make setupAnnotation into a tiny compatibility wrapper around a new
      method #anchor() method that returns a promise of the anchors. This
      is cleaner than trying to store the anchors on the annotation itself,
      which creates circular references, and it means there's no need to
      strip these properties when serializes annotations across the frame
      boundary.
      
      Sort annotations by TextPositionSelector in the widget display. This
      provides greater visual stability -- cards don't change positions
      after anchoring -- at the cost of potentially out of order cards when
      anchors have moved.
      6e41b134
    • Randall Leeds's avatar
      Remove unnecessary timezone stuff · f2ae1a5b
      Randall Leeds authored
      We're not displaying time in any timezones other than the browser
      local one. Therefore, we don't need to parse and convert time zone
      names. Moment will pull the timezone offset itself from the current
      browser by using Date.prototype.getTimezoneOffset().
      
      This eliminates 251kB (43kB gzipped) of minified code from our
      application bundle. Wow!
      f2ae1a5b
  7. 11 Aug, 2015 1 commit
    • Randall Leeds's avatar
      Replace scroll-into-view with scroll-to-element · 7bd702c9
      Randall Leeds authored
      The new choice is simpler. It does not deal with scrollable elements
      below the window. On the other hand, this also makes it less liable
      to choke on edge cases when scrolling the window would be just fine.
      7bd702c9
  8. 10 Aug, 2015 7 commits
  9. 07 Aug, 2015 2 commits