Included return on the Api call to add a wireTap, so that the subscriber could remove the tap

This commit is contained in:
Jim Cowart 2012-02-26 14:51:45 -05:00
parent a5223ea482
commit a6d5fa01b7

View file

@ -25,6 +25,6 @@ var postal = {
},
addWireTap: function(callback) {
this.configuration.bus.addWireTap(callback);
return this.configuration.bus.addWireTap(callback);
}
};