Skip to content

Commit

Permalink
change pouchdb location
Browse files Browse the repository at this point in the history
  • Loading branch information
gabidobo committed Sep 22, 2015
1 parent 87e8f65 commit 064bb09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion dist/telepat.js
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,7 @@ var Monitor = function (tlog, terror, interval) {

module.exports = Monitor;
},{"./event":4,"jsondiffpatch":27}],7:[function(require,module,exports){
(function (__dirname){
'use strict';
// # Telepat Javascript Client
// **Telepat** is an open-source backend stack, designed to deliver information and information updates in real-time to clients, while allowing for flexible deployment and simple scaling.
Expand All @@ -589,7 +590,7 @@ var Monitor = require('./monitor');
// * `subscriptions`, an object that holds references to [Channel](http://docs.telepat.io/telepat-js/lib/channel.js.html) objects, on keys named after the respective channel

var Telepat = function () {
var db = new PouchDB('_telepat');
var db = new PouchDB(__dirname + '/_telepat');
var Event = new EventObject(log);
var apiEndpoint = null;
var socketEndpoint = null;
Expand Down Expand Up @@ -817,6 +818,7 @@ var Telepat = function () {

module.exports = Telepat;

}).call(this,"/lib")
},{"./api":2,"./channel":3,"./event":4,"./logger":5,"./monitor":6,"./user":8,"pouchdb":67,"socket.io-client":113}],8:[function(require,module,exports){
'use strict';
// # Telepat User Class
Expand Down
2 changes: 1 addition & 1 deletion lib/telepat.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var Monitor = require('./monitor');
// * `subscriptions`, an object that holds references to [Channel](http://docs.telepat.io/telepat-js/lib/channel.js.html) objects, on keys named after the respective channel

var Telepat = function () {
var db = new PouchDB('_telepat');
var db = new PouchDB(__dirname + '/_telepat');
var Event = new EventObject(log);
var apiEndpoint = null;
var socketEndpoint = null;
Expand Down

0 comments on commit 064bb09

Please sign in to comment.