- 02 Jul, 2012 4 commits
-
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
Add knockoutjs with require.js in labs
-
- 01 Jul, 2012 7 commits
-
-
Sindre Sorhus authored
use built maria.js file and organize files according to framework's recommended best practices
-
Sindre Sorhus authored
Angularjs fixes
-
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.
-
Igor Minar authored
- simplified the code - break up the code base into one file per component - extract persistence into a separate module - general cleanup
-
Igor Minar authored
-
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.
-
Addy Osmani authored
Emberjs routing
-
- 30 Jun, 2012 5 commits
-
-
Stas SUȘCOV authored
-
Stas SUȘCOV authored
-
Stas SUȘCOV authored
-
Stas SUȘCOV authored
-
Stas SUȘCOV authored
-
- 24 Jun, 2012 15 commits
-
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
* refs/heads/master-temp: Minor list revisions
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
addyosmani authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
- 23 Jun, 2012 9 commits
-
-
Stas SUȘCOV authored
`TodosController` will filter the content based on router's filter.
-
Stas SUȘCOV authored
-
Stas SUȘCOV authored
-
Stas SUȘCOV authored
-
Stas SUȘCOV authored
-
Stas SUȘCOV authored
Most of the non-dynamic (from routing point of view) views should reside in application view.
-
Stas SUȘCOV authored
-
Stas SUȘCOV authored
Renders items on root path.
-
Stas SUȘCOV authored
-