Live compile/reload for demo shell, code cleanup

This commit is contained in:
Denys Vuika 2016-05-20 11:44:45 +01:00
parent b4b837a14d
commit fff9a9a070
2 changed files with 2 additions and 6 deletions

View File

@ -14,5 +14,6 @@
"node_modules",
"typings/main",
"typings/main.d.ts"
]
],
"compileOnSave": true
}

View File

@ -70,11 +70,6 @@ export class ObjectDataTableAdapter implements DataTableAdapter {
return this._sorting;
}
getColumnByKey(key: string) {
let columns = this._columns.filter(col => col.key === key);
return columns.length > 0 ? columns[0] : null;
}
setSorting(sorting: DataSorting): void {
this._sorting = sorting;