Question

top.on('click', function(){
    anim.run();
});

I have an anim function, and was wondering why I can't call it like this

top.on('click', anim.run);
Was it helpful?

Solution

top.on('click', function () { anim.run(); });

or

top.on('click', Y.bind(anim.run, anim));

OTHER TIPS

Because this is not anim in the second case as you're retrieving the run function and not calling it from anim.

For example:

var a = {
  b: function () {
    return this.c;
  },
  c: 1
},
c = 2;

a.b() === 1;
var bMethod = a.b;
bMethod() === 2;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top