Fix order of arguments.

This commit is contained in:
David Glasser
2012-12-13 13:35:25 -08:00
parent e4395720f3
commit 8b44dc1757

View File

@@ -651,7 +651,7 @@ _.extend(Meteor._LivedataSession.prototype, {
_diffCollectionViews: function (beforeCVs) {
var self = this;
diffObjects(beforeCVs, self.collectionViews, {
both: function (collectionName, rightValue, leftValue) {
both: function (collectionName, leftValue, rightValue) {
rightValue.diff(leftValue);
},
rightOnly: function (collectionName, rightValue) {