[Tables] #801 Documented MctTable directive

This commit is contained in:
Henry
2016-04-04 21:10:13 -07:00
parent 99ba9edb95
commit 20672ad028
7 changed files with 136 additions and 16 deletions

View File

@ -68,6 +68,10 @@ define(
RealtimeTableController.prototype = Object.create(TableController.prototype);
/**
* Overrides method on TelemetryTableController providing handling
* for realtime data.
*/
RealtimeTableController.prototype.addRealtimeData = function() {
var self = this,
datum,
@ -89,7 +93,7 @@ define(
self.$scope.rows.length - 1);
}
});
}
};
return RealtimeTableController;
}