Vlad Balin
Vlad Balin
The pattern is to override `component.linkAll()`. - Call `linkAll` of the base class to produce the relevant links. - Add custom validation checks. - If needed, compute the `validationError` and...
Hello, everyone. It took a long time for the next major release, but now we're almost there. There is the major change introduced since this version. As you probably know,...
`obj[ Symbol.iterator ] = function(){ ... }` So, for-of and other iterable stuff will work.
Move core infrastructure to the separate npm package. Events will become dependency-free. Currently it uses following things from underscore: keys, uniqueId, isEmpty, size, bind, once. Events unit test must be...
Hola! @gaperton has created a [ZenHub](http://www.zenhub.com) account for the **Volicon** organization. ZenHub is the only project management tool integrated natively in GitHub – created specifically for fast-moving, software-driven teams. ---...
- it must support iteration through its option - it must perform type casts on assignments. - it must support display names, symbolic shortcuts, and serialization ids. - syntax must...
Ad-hoc events triggering complicates code dependencies analysis. It would be beneficial to enforce declarations of event names. ``` triggers : { 'myEvent' : [ Model, Boolean ] } this.trigger.myEvent( this,...
Model.id would be used as a key. We won't touch sync, just override fetch, save, and delete. Would be useful as a base class for ViewModels. And this is enough...
Model knows it, so why collection shouldn't? `collection.changed` - array of changed models. `collection.added` - same for added models `collection.removed` - same for removed models. This feature will allow complete...