[Build] Remove unused variables

...to satisfy JSHint
This commit is contained in:
Victor Woeltjen
2016-03-04 11:41:48 -08:00
parent bf232d0593
commit a1a7b2b8ce
44 changed files with 55 additions and 109 deletions

View File

@ -3,7 +3,7 @@ define(
["../controllers/MCTTableController"],
function (MCTTableController) {
function MCTTable($timeout) {
function MCTTable() {
return {
restrict: "E",
templateUrl: "platform/features/table/res/templates/mct-data-table.html",
@ -13,7 +13,7 @@ define(
rows: "=",
enableFilter: "=?",
enableSort: "=?"
},
}
};
}