Comparing version
@@ -5,2 +5,3 @@ | ||
var Fireproof = require('./lib/core'); | ||
require('./lib/stats')(Fireproof); | ||
require('./lib/snapshot')(Fireproof); | ||
@@ -7,0 +8,0 @@ require('./lib/query')(Fireproof); |
@@ -17,5 +17,7 @@ | ||
var deferred = Fireproof._checkQ().defer(); | ||
var self = this; | ||
this._ref.transaction(updateFunction, function(err, committed, snap) { | ||
self._ref.transaction(updateFunction, function(err, committed, snap) { | ||
Fireproof.stats._record('read', self.toString()); | ||
snap = new Fireproof.Snapshot(snap); | ||
@@ -75,2 +77,3 @@ | ||
Fireproof.stats._record('read', this.toString()); | ||
snap = new Fireproof.Snapshot(snap); | ||
@@ -119,5 +122,3 @@ | ||
Fireproof.prototype.off = function(eventType, callback, context) { | ||
this._ref.off(eventType, callback, context); | ||
}; | ||
@@ -147,4 +148,7 @@ | ||
this._ref.once(eventType, function(snap) { | ||
var self = this; | ||
self._ref.once(eventType, function(snap) { | ||
Fireproof.stats._record('read', self.toString()); | ||
snap = new Fireproof.Snapshot(snap); | ||
@@ -151,0 +155,0 @@ |
@@ -24,2 +24,3 @@ | ||
Fireproof.stats._record('write', this.toString()); | ||
this._ref.set(value, handler); | ||
@@ -43,2 +44,3 @@ | ||
Fireproof.stats._record('update', this.toString()); | ||
this._ref.update(value, handler); | ||
@@ -61,2 +63,3 @@ | ||
Fireproof.stats._record('write', this.toString()); | ||
this._ref.remove(handler); | ||
@@ -80,2 +83,4 @@ | ||
Fireproof.stats._record('write', this.toString()); | ||
var rv = new Fireproof( | ||
@@ -103,2 +108,3 @@ this._ref.push(value, handler), | ||
Fireproof.stats._record('write', this.toString()); | ||
this._ref.setWithPriority(value, priority, handler); | ||
@@ -122,2 +128,3 @@ | ||
Fireproof.stats._record('write', this.toString()); | ||
this._ref.setPriority(priority, handler); | ||
@@ -124,0 +131,0 @@ |
{ | ||
"name": "fireproof", | ||
"version": "1.4.2", | ||
"version": "1.5.0", | ||
"description": "Promises for Firebase objects.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -49,3 +49,3 @@ | ||
IE back to 8. | ||
IE back to 9. | ||
@@ -51,5 +51,9 @@ | ||
if (global.__bootstrappedFirebase) { | ||
return global.__bootstrappedFirebase.tearDown(); | ||
console.log('Tearing down Firebase', global.__bootstrappedFirebase.toString()); | ||
return global.__bootstrappedFirebase.tearDown() | ||
.then(function() { | ||
console.log('Done!'); | ||
}); | ||
} | ||
}); |
Sorry, the diff of this file is not supported yet
48378
10.93%27
8%1352
11.92%