An error occurred fetching the project authors.
  1. 23 Dec, 2015 3 commits
  2. 21 Sep, 2015 1 commit
  3. 08 Apr, 2015 1 commit
  4. 04 Feb, 2015 1 commit
  5. 14 Oct, 2014 1 commit
  6. 26 Jan, 2014 1 commit
  7. 24 Jan, 2014 1 commit
  8. 19 Nov, 2013 2 commits
  9. 15 Nov, 2013 1 commit
  10. 06 Aug, 2013 1 commit
  11. 17 May, 2013 1 commit
  12. 26 Apr, 2013 1 commit
  13. 09 Mar, 2013 2 commits
  14. 20 Feb, 2013 1 commit
  15. 19 Feb, 2013 1 commit
  16. 13 Feb, 2013 1 commit
  17. 11 Jan, 2013 1 commit
  18. 07 Aug, 2012 1 commit
  19. 06 Aug, 2012 1 commit
  20. 03 Jul, 2012 1 commit
  21. 01 Jul, 2012 3 commits
    • Igor Minar's avatar
      AngularJS: add angularjs-perf version · a7abc6cf
      Igor Minar authored
      this one has better performance at the cost of complexity
      
      for a toy app like this one the difference is insignificant,
      but it might be good to see the two versions and compare them
      and based on that be able to make the trade-offs in real apps
      
      the angularjs version does deep watching of the todos array object.
      that means that it keeps an in memory copy of the whole array that
      is used for dirty checking in order to detect model mutations. For
      toy app like this it's totally fine and in fact encouraged practice
      since you are trading off a little bit of memory and performance
      for simplicity.
      
      However in a large project where you are dealing with array of 100s
      or 1000s of large objects you definitely don't want to use this
      approach. Instead you want to use a different way of doing the same
      thing, which requires more code but is a lot more efficient.
      a7abc6cf
    • Igor Minar's avatar
      AngularJS: cleanup + fixes · 7ded351d
      Igor Minar authored
      - simplified the code
      - break up the code base into one file per component
      - extract persistence into a separate module
      - general cleanup
      7ded351d
    • Igor Minar's avatar
      AngularJS: unifying indentation and ws · ce1e4cb0
      Igor Minar authored
      per https://github.com/rwldrn/idiomatic.js/#idiomatic-style-manifesto
      
      - Never mix spaces and tabs.
      - ...  choose between soft indents (spaces) or real tabs, consider this law.
      
      I went with spaces everywhere.
      ce1e4cb0
  22. 14 Jun, 2012 1 commit
  23. 03 Jun, 2012 1 commit
  24. 02 Jun, 2012 1 commit
  25. 04 May, 2012 1 commit
  26. 01 May, 2012 1 commit
  27. 14 Apr, 2012 1 commit
  28. 20 Mar, 2012 1 commit
  29. 01 Mar, 2012 6 commits