1. 01 Jul, 2012 6 commits
    • Sindre Sorhus's avatar
      Merge pull request #191 from IgorMinar/angularjs-fixes · 66a67121
      Sindre Sorhus authored
      Angularjs fixes
      66a67121
    • 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 1.0.1 · 4bcb50f3
      Igor Minar authored
      4bcb50f3
    • 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
    • Addy Osmani's avatar
      Merge pull request #198 from stas/emberjs-routing · dee327ac
      Addy Osmani authored
      Emberjs routing
      dee327ac
  2. 30 Jun, 2012 5 commits
  3. 24 Jun, 2012 15 commits
  4. 23 Jun, 2012 11 commits
  5. 20 Jun, 2012 3 commits