1. 19 Aug, 2014 1 commit
  2. 18 Aug, 2014 4 commits
  3. 15 Aug, 2014 3 commits
  4. 14 Aug, 2014 1 commit
  5. 13 Aug, 2014 12 commits
  6. 12 Aug, 2014 5 commits
  7. 11 Aug, 2014 1 commit
    • Randall Leeds's avatar
      Restore reloadOnSearch: false for viewer · cd65ac8c
      Randall Leeds authored
      There seems to be some combination of conditions which cause Firefox
      to infinite loop on the $location service's watchers. Bisecting pointed
      to the commit where I removed this. For now, let's slap this bandaid
      on. The proper fix probably has to do with making the parameters we
      pass to the iframe in its src actually do something (like validating
      the origin of frames that connect to the sidebar) and then clearing the
      parameters from the URL so they don't cause a reload after the initial
      redirection to /viewer.
      cd65ac8c
  8. 10 Aug, 2014 1 commit
  9. 09 Aug, 2014 10 commits
  10. 08 Aug, 2014 1 commit
  11. 06 Aug, 2014 1 commit
    • gergely-ujvari's avatar
      Fix: Stream showing reply annotations without their parents · 9cfdb051
      gergely-ujvari authored
      If new annotation data arrives via websocket, the applyUpdates()
      function processes it and injects the new annotation data into our
      client-side annotation-db.
      
      Some annotations (depending on the viewstate) are put immediately into the viewer
      by adding them to the $rootScope.annotations
      
      However, in the case of the stream page reply annotations can arrive without
      their parent annotation, and because that they didn't get inserted into
      the rootScope and thus never displayed
      
      This commit fixes that, by letting these annotations inserted into
      the rootScope.annotations for document viewstate (which the stream uses)
      9cfdb051