mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Fix order of arguments.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user