Niji

Results 106 comments of Niji

https://github.com/bucha/Garlic.js/commit/8deecab1e81cc874b0083447779f02485b3a6508 is for reference that someone else also had this problem.

Looked more into it and it has to do with `watchable-object` library, as it doesn't keep a snapshot, if you modify `this.data` that is modifying what I will call the...

Currently doing something like this to get around this issue: ``` js Caplet.Model.prototype.__proto__.onDataChange = function (data) { this.setProperties(this.fromData(data)) this.state = this.toData(data) } ``` Then doing: ``` js setTokenData: function (token)...

> Got any ideas on how you'd like this API to be? I added a post of how I got around it, perhaps you have some thoughts on making a...

It seems ditching `.data` fares pretty well, using `.data` causes inconsistencies: https://i.imgur.com/xvcgZXE.png

My needs are less for a `remote` source and more of a `localstorage` situation, the only time we ever talk with remote is for `loading`. I suppose I _could_ architect...

You could use [node-colour-extractor](https://github.com/josip/node-colour-extractor) for this, get the top two colours that are used and store those for values for a gradient.

I did not know this existed, this should be in the main documentation or a side-note linking to this somewhere. Also, header blocks for a master.[ext] that imports all?

Pre-release is visible under the 2.0 branch: https://github.com/nijikokun/breeze/tree/feat/2.0

@derhuerst because the catch could be attached at a later time.