Component Constructor Boilerplate

function component(domElement) {
​
  this.domElement = domElement;
  this.initialize = function() {
    console.log('init');
  };
  this.render = function() {
    console.log('render');
  }
​
}

results matching ""

    No results matching ""