-
If you have a model that has url within props
```
module.exports = AmpersandModel.extend({
props: {
id: 'any',
firstName: ['string', true, ''],
lastName: ['string', true, ''],
coolnes…
-
It'd be nice if tests could be run like this: browserify test/\* | tape-run | tap-spec, but they fail because `Object.defineProperty` doesnt work well in phantomjs: ariya/phantomjs#11856
Similar to h…
-
Currently any change to a subcollection triggers a sort, even if no comparator is defined on the subcollection. This is a) different to how a collection works, b) means excessive dom manipulation in c…
-
``` javascript
collection.add([
{ id: 0, value: "zero" },
{ id: 1, value: "one" }
]);
collection.get(0); // expected { id: 0, value: "zero" }, but returns `undefined`
```
I think this is because…
-
Consider the following ([edit / run on requirebin here](http://requirebin.com/?gist=1f4bfe15f30bb138acb9))
``` js
var AmpersandState = require('ampersand-state');
var Smile = AmpersandState.extend({…
-
Or maybe just create an `ampersand-collection-amp-mixin` :+1:
-
https://github.com/AmpersandJS/ampersand-collection/blob/master/ampersand-collection.js#L310-L311
Pretty sure we want to send the old values to `_deIndex`
``` javascript
_onModelEvent: function …
-
I just noticed using the latest version. If I accept all the defaults, **_but omit selecting a processor, or select SASS**_ when asked to choose one, the following error occurs. Choosing Stylus result…
-
I am trying to set up a simple welcome view (displayed automatically as the root path of my router, can provide that code if needed), but I keep getting this Chrome console error:
> Cannot read prope…
-
We plan to support specifying solutions and non-solutions inside levels.
The first use of this will be automated tests that check that all levels are soluble even when we change levels or the rules o…