getInstance: function()

in xhpjs.js [63:68]


  getInstance: function(id) {
    if (typeof this.instances[id] == 'undefined') {
      this.constructInstance(id);
    }
    return this.instances[id];
  },