1. 09 11月, 2020 34 次提交
  2. 08 11月, 2020 3 次提交
  3. 07 11月, 2020 3 次提交
    • R
      Add more logging to github auth provider · 03c38e67
      Rachel Macfarlane 提交于
      03c38e67
    • D
      Unassign myself from the classifier · 1d5854f6
      Daniel Imms 提交于
      1d5854f6
    • M
      Fixes navigation commands for webviews · 3338ff4e
      Matt Bierner 提交于
      Fixes #100536
      
      These commands currently do not work because:
      
      - The use the `hasFocus` check in layout.ts
      - This looks at the active element and checks if the active element has a parent in the editor dom
      - However webviews are outside of the normal dom flow (since they cannot be reparented without being destroyred)
      
      To fix this, this PR adds allows dom node to point to their explicit parent using `setParentFlowTo`. Instead of a normal ancestor check, we then check ancestors while observing the flow to parents of node
      
      The webview element is then update to have a parent flow to that points at its editor node
      3338ff4e