- 06 Jul, 2012 2 commits
-
-
Addy Osmani authored
Cujo todo implementation
-
Brian Cavalier authored
-
- 05 Jul, 2012 2 commits
-
-
Addy Osmani authored
update to latest maria.js
-
Peter Michaux authored
-
- 04 Jul, 2012 2 commits
-
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
- 03 Jul, 2012 4 commits
-
-
Sindre Sorhus authored
Will be linked to in the wiki
-
Sindre Sorhus authored
angular.js with require.js
-
Igor Minar authored
-
Pascal Hartig authored
-
- 02 Jul, 2012 10 commits
-
-
addyosmani authored
-
Pascal Hartig authored
- Strict mode - Split up directives - Require 'app' in 'main' to improve loading time - Added Igor to contributors list
-
Pascal Hartig authored
Controllers and directives share a common app namespace, which is an angular module that is loaded via require.js. The angular-loader is inlined so the loading of angular.js and the modules can happen in parallel.
-
addyosmani authored
-
addyosmani authored
-
addyosmani authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
-
Sindre Sorhus authored
Add knockoutjs with require.js in labs
-
- 01 Jul, 2012 19 commits
-
-
addyosmani authored
-
addyosmani authored
-
addyosmani authored
-
addyosmani authored
-
addyosmani authored
-
addyosmani authored
-
addyosmani authored
-
addyosmani authored
-
addyosmani authored
-
addyosmani authored
-
Sindre Sorhus authored
use built maria.js file and organize files according to framework's recommended best practices
-
Sindre Sorhus authored
Angularjs fixes
-
addyosmani authored
-
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.
-
addyosmani authored
-
Addy Osmani authored
Emberjs routing
-
- 30 Jun, 2012 1 commit
-
-
Stas SUȘCOV authored
-