We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 417faf2 commit 0febce2Copy full SHA for 0febce2
1 file changed
src/exp.js
@@ -7,7 +7,7 @@ class Exp {
7
constructor(settings) {
8
/* Initializing model */
9
this.model = settings.data || {};
10
-
+
11
this.RavenInstance = undefined;
12
const RAVEN_CDN = "https://cdn.ravenjs.com/3.26.4/raven.min.js";
13
@@ -271,6 +271,7 @@ class Exp {
271
this.bindClose();
272
this.bindFors();
273
this.bindIfs();
274
+ this.bindRefs();
275
276
/* Load recommendations */
277
this.loadRecommendations();
@@ -332,6 +333,7 @@ class Exp {
332
333
/* Bind helper methods */
334
this.model.$anim = $anim;
335
this.model.$validateEmail = $validateEmail;
336
+ this.model.$refs = {};
337
338
/* Bind special methods to be used in `this` scope */
339
this.model.removeBanner = this.removeBanner.bind(this, this.app);
0 commit comments