-
### Description
Spotlight does not properly display ampersands on exhibit card descriptions. If one is typed into the exhibit description, it is displayed as `&` instead of "&". For example, inst…
-
The sort functions used by this package and ampersand-collection are not equivalent.
Ampersand-collection uses it's own method while here lodash.sortby is used. I'm getting different results.
Overwr…
-
Not sure where this started it has been some time since I watched a collection of movies, went to Collections screen just now and any collection with & in name gets duplicated into a Collection for ea…
-
ampersand-subcollection and ampersand-collection both use different sort methods.
Ampersand-subcollection uses lodash sortBy, and ampersand-collection uses native array sort. I ran into an issue wher…
-
``` javascript
var Model = require('ampersand-model');
var Collection = require('ampersand-collection').extend({model: Model, comparator: 'attribute'});
var models = [new Model, new Model, new Model…
-
Define a 'gear' model and gear-collection:
```
var Model = require('ampersand-model');
module.exports = Model.extend({
props: {
id: 'string',
name: 'string'
},
parse: fun…
-
```
const State = require('ampersand-state');
const Collection = require('ampersand-collection');
const StateCollection = Collection.extend({});
const Country = State.extend({
collections: …
-
`Uncaught RangeError: Maximum call stack size exceeded`
`at PaginatedCollection.FilteredCollection.(anonymous function)`
The error occurs in the mapping of collection methods: https://github.com/A…
-
Simplified example:
``` javascript
var Model = require('ampersand-model');
var Collection = require('ampersand-collection');
var Room = Model.extend({
props: {
size: ['number', true, 10],
},…
-
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.…