1. 21 12月, 2017 1 次提交
  2. 08 12月, 2017 2 次提交
  3. 30 11月, 2017 1 次提交
  4. 29 11月, 2017 2 次提交
  5. 28 11月, 2017 1 次提交
  6. 24 11月, 2017 2 次提交
  7. 11 11月, 2017 7 次提交
  8. 06 11月, 2017 1 次提交
  9. 01 11月, 2017 1 次提交
  10. 31 10月, 2017 4 次提交
  11. 30 10月, 2017 1 次提交
  12. 28 10月, 2017 1 次提交
  13. 23 10月, 2017 7 次提交
  14. 22 10月, 2017 1 次提交
  15. 20 10月, 2017 1 次提交
  16. 17 10月, 2017 2 次提交
  17. 16 10月, 2017 5 次提交
    • P
      fixed karma spec with prev directory button · 5e5e9c19
      Phil Hughes 提交于
      5e5e9c19
    • P
      fixed karma build because of a removed method · a11410a8
      Phil Hughes 提交于
      a11410a8
    • P
      fixed rendering bugs · fa9e729a
      Phil Hughes 提交于
      fixed eslint
      fa9e729a
    • P
      Spec updates · 5f80d042
      Phil Hughes 提交于
      Updated as best as possible, a lot of tests still change the store
      and never reset the state back which can cause some issues with other
      tests.
      5f80d042
    • P
      Refactored multi-file data structure · b1b91aa0
      Phil Hughes 提交于
      This moves away from storing in a single array just to render the table.
      It now stores in a multi-dimensional array/object type where each entry
      in the array can have its own tree. This makes storing the data for
      future feature a little easier as there is only one way to store the
      data.
      
      Previously to insert a directory the code had to insert the directory
      & then the file at the right point in the array. Now the directory
      can be inserted anywhere & then a file can be quickly added into this
      directory.
      
      The rendering is still done with a single array, but this is handled
      through underscore. Underscore takes the array & then goes through
      each item to flatten it into one. It is done this way to save changing
      the markup away from table, keeping it as a table keeps it semantically
      correct.
      b1b91aa0