From f6d83c1dc8838ba63def7598468c1aab3bc8d7af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hiram=20Centelles=20Rodr=C3=ADguez?= Date: Mon, 12 May 2014 16:36:00 +0200 Subject: [PATCH 1/2] Added gql plugin support --- angular-pouchdb.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/angular-pouchdb.coffee b/angular-pouchdb.coffee index 6490af4..ba28cf3 100644 --- a/angular-pouchdb.coffee +++ b/angular-pouchdb.coffee @@ -103,6 +103,7 @@ pouchdb.provider 'pouchdb', -> from: db.replicate.from.bind(db) sync: db.replicate.sync.bind(db) destroy: qify db.destroy.bind(db) + gql: qify db.gql.bind(db) ] # pouch-repeat="name in collection" From 076d74ebd930c04de1be89750f84d7fa3c9089f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hiram=20Centelles=20Rodr=C3=ADguez?= Date: Mon, 12 May 2014 16:37:06 +0200 Subject: [PATCH 2/2] Added gql plugin support --- angular-pouchdb.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/angular-pouchdb.js b/angular-pouchdb.js index 385592b..9a9d2dd 100644 --- a/angular-pouchdb.js +++ b/angular-pouchdb.js @@ -129,7 +129,8 @@ THE SOFTWARE. from: db.replicate.from.bind(db), sync: db.replicate.sync.bind(db) }, - destroy: qify(db.destroy.bind(db)) + destroy: qify(db.destroy.bind(db)), + gql: qify(db.gql.bind(db)) }; } };