mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Use UI.safeEquals for Blaze.With dataVar
This commit is contained in:
@@ -34,7 +34,8 @@ Blaze.With = Blaze.Controller.extend({
|
||||
|
||||
Blaze.With.__super__.constructor.call(this);
|
||||
|
||||
this.dataVar = (data instanceof Blaze.Var) ? data : Blaze.Var(data);
|
||||
this.dataVar = (data instanceof Blaze.Var) ? data :
|
||||
Blaze.Var(data, UI.safeEquals);
|
||||
this.func = func;
|
||||
},
|
||||
render: function () {
|
||||
|
||||
Reference in New Issue
Block a user