-
ampersand-state has been immensely useful for backing my models in a consistent fashion, but I'm finding more and more that es6 classes would solve a category of problems that ampersand-state does not…
-
Right now ampersand-version is a weird browserify transform. Let's change that so we can work in webpack easily and do more:
Here's how I think it should work:
## Proposal
- You require ampersand-ver…
-
```
const State = require('ampersand-state');
const Collection = require('ampersand-collection');
const StateCollection = Collection.extend({});
const Country = State.extend({
collections: …
-
Hello
I am dealing with hierchical data, and trying to implement it this way :
``` js
var State = require('ampersand-state');
var Collection = require('ampersand-collection');
var Instance = State.…
-
I have a child collection declared in a State. RequireBin runnable code [here](http://requirebin.com/?gist=a2740b99242f1fa43225). I'd like to be able to initialize my collection with what is being i…
-
In AmpersanJS app when trying to save a model, follwoing error is thrown.
```
Uncaught TypeError: def.values.join is not a function
at child.set (ampersand-state.js:210)
at child.save (amp…
-
I am not sure if this is expected behavior.
``` javascript
var State = require('ampersand-state');
var A = State.extend({
props: { n: 'number' },
parse: function (attrs) {
attrs.n = parseInt…
-
I think it would be a good idea to allow for nested props when extending ampersand-state or ampersand-model. I'm not quite sure what the best way would be to do this, but right now to nest props in a …
-
Feature request: support a general `change` event when a field changes, and not just `change:field`.
This would match `ampersand-state` and `ampersand-views` behaviours.
Currently I do this by:
```…
-
There is the auto-alignment feature for tabular content (in German, called "richte Spalten aneinander aus"; could anyone add the English name of the menu entry, please?). I would appreciate of this fe…