[Table] #670 Added new view type 'table'

This commit is contained in:
Henry
2016-02-26 11:09:51 -08:00
parent 77a2e0a70b
commit ffa497f22f
20 changed files with 2171 additions and 0 deletions

View File

@ -0,0 +1,24 @@
/*global define*/
define(
[],
function () {
"use strict";
function MCTTable($timeout) {
return {
restrict: "E",
templateUrl: "platform/features/table/res/templates/mct-data-table.html",
controller: 'MCTTableController',
scope: {
headers: "=",
rows: "=",
enableFilter: "=?",
enableSort: "=?"
}
};
}
return MCTTable;
}
);