magnumjs
magnumjs
Create version 0.2 intro getting started article Highlight differences
This is mithril based http://gilbert.ghost.io/mithril-js-tutorial-1/
This is a React one: http://jlongster.com/Removing-User-Interface-Complexity,-or-Why-React-is-Awesome code examples: https://gist.github.com/jlongster/3f32b2c7dce588f24c92
This is a Mithril one: http://ratfactor.com/daves-guide-to-mithril-js?/mordor/barad-dur
View is still being called in an inner module controller which calls preventDefault http://jsbin.com/maceqeyumi/1/edit
It would be nice to be able to execute on unload life cycle event for a module inside a module that was attached to the state and then removed. For...
1. Cache values to check for changes before writing. 2. Introduce fast Dom writing and reading async
Test: Solution use deep freeze: ``` javascript function deepFreeze(o) { var prop, propKey; Object.freeze(o); // First freeze the object. for (propKey in o) { prop = o[propKey]; if (!o.hasOwnProperty(propKey) ||...
Please add an example in mag js of the layout manager with at least one tabbed module component from praetor js. https://github.com/magnumjs/praetor.js/blob/gh-pages-code/src/scripts/app.js
I can have an array or I can make an object with poperties, config and events, but I can't seem to make an array with that. Since objects can have...