Simon Wade

Results 52 comments of Simon Wade

Thanks! That sounds really great to me. Let me know if there's anything I can do to help.​

Are we able to detect whether web notifications are enabled? If so then I think we should only display the web notification, not the DOM notification. I think it's important...

From the [PouchDB website](http://pouchdb.com/faq.html) it says "you can use PouchDB within Apache Cordova": > PouchDB is one of multiple projects that implement the CouchDB protocol and these can all be...

Interestingly [PouchDB is also a CouchDB client](http://pouchdb.com/faq.html) so we should be able to use the PouchDB API as the abstraction layer for switching between a remote CouchDB server or local...

Yep definitely interested, but not sure at this stage whether the project I'm working on will use a CouchDB-based solution or another persistence technology. Should know next week, so I'll...

Somebody's already done some work on making PouchDB more Ember-like [here](https://github.com/taras/ember-pouchdb?utm_source=Ember+Weekly&utm_campaign=0485620c73-Ember_Weekly_Issue_29&utm_medium=email&utm_term=0_e96229d21d-0485620c73-96183753)

Yes, that does work. I'm using Ember and the way to construct an instance is: ``` Class = Em.Object.extend foo: -> 'bar' object = Class.create() ``` When I type `object.`...

Yes it will work, but the code won't because Ember's got it's own object model :(