show/hide this revision's text 7 renamed context to scope

(extracted some explanation that was hidden in comments in other answer)

The problem lies in the following line:

this.dom.addEventListener("click", self.onclick, false);

Here, you pass a function object to be used as callback. When the event trigger, the function is called but now it has no association with any object (this).

The problem can be solved by wrapping the function (with it's object reference) in a closure as follows:

this.dom.addEventListener(
  "click",
  function(event) {self.onclick(event)},
  false);

Since the variable self was assigned this when the closure was created, the closure function will remember the value of the self variable when it's called at a later time.

An alternative way to solve this is to make an utility function (and avoid using variables to bind for binding this):

function bind(contextbind(scope, fn) {
    return function () {
    	fn.apply(contextfn.apply(scope, arguments);
    };
}

The updated code would then look like:

this.dom.addEventListener("click", bind(this, this.onclick), false)
show/hide this revision's text 6 Renamed function to bind

(extracted some explanation that was hidden in comments in other answer)

The problem lies in the following line:

this.dom.addEventListener("click", self.onclick, false);

Here, you pass a function object to be used as callback. When the event trigger, the function is called but now it has no association with any object (this).

The problem can be solved by wrapping the function (with it's object reference) in a closure as follows:

this.dom.addEventListener(
  "click",
  function(event) {self.onclick(event)},
  false);

Since the variable self was assigned this when the closure was created, the closure function will remember the value of the self variable when it's called at a later time.

An alternative way to solve this is to make an utility function (and avoid using variables to bind this):

function closure(contextbind(context, fn) {
    return function () {
    	fn.apply(context, arguments);
    };
}

The updated code would then look like:

this.dom.addEventListener("click", closure(thisbind(this, this.onclick), false)
show/hide this revision's text 5 Renamed to closure

(extracted some explanation that was hidden in comments in other answer)

The problem lies in the following line:

this.dom.addEventListener("click", self.onclick, false);

Here, you pass a function object to be used as callback. When the event trigger, the function is called but now it has no association with any object (this).

The problem can be solved by wrapping the function (with it's object reference) in a closure as follows:

this.dom.addEventListener(
  "click",
  function(event) {self.onclick(event)},
  false);

Since the variable self was assigned this when the closure was created, the closure function will remember the value of the self variable when it's called at a later time.

An alternative way to solve this is to make an utility function (and avoid using variables to bind this):

function createCallback(callbackObjectclosure(context, callbackFunctionfn) {
    return function () {
    	callbackFunction.apply(callbackObjectfn.apply(context, arguments);
    };
}

The updated code would then look like:

this.dom.addEventListener("click", createCallback(thisclosure(this, this.onclick), false)
show/hide this revision's text 4 layout
show/hide this revision's text 3 added 23 characters in body
show/hide this revision's text 2 deleted 5 characters in body
show/hide this revision's text 1