Slide 56
Slide 56 text
var MyTracker = function() {
MyTracker.base(this, 'constructor');
};
tracking.inherits(MyTracker, tracking.Tracker);
MyTracker.prototype.track = function(pxs, width, height) {
// Your code here
this.emit('track', {
// Your code here
});
};