Mike McKay
Mike McKay
Maybe merge in some of this code: https://github.com/boxxxie/js2form
I think this line: ``` for doc in data.rows if doc.value then _temp.push doc.value else _temp.push doc.doc ``` from: https://github.com/janmonschke/backbone-couchdb/blob/master/backbone-couchdb.coffee#L75 Should be: ``` for doc in data.rows if doc.value then...
How about creating a database that tracks URLs requiring overlays to be closed. People can upvote or downvote them. Then overlays can be closed automatically once enough people have upvoted....
The first option is never selectable - it always results in null. Example here: http://jsfiddle.net/mikeymckay/FKQWV/2/
It's a pain to have to specify the database name every function call. Is there a way to configure this during instantiation so that you don't have to type it...
Problem is that all is using GET when it should use a POST. I've tried to fix it, but it's not right. If I figure it out I can send...
``` database.doc.all "dbname", { startkey: "\"alpha\"", endkey: "\"bravo\ufff0\"", include_docs: true } .each (row) => ... ``` Is this by design? This isn't the case for PouchDB. The extra escaped quotes...
If I add this to my init.vim: hi CurrentWord ctermbg=NONE Then the current word is still highlighted. But if I call it from within nvim it disables fine. I want...