diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-01-30 22:41:14 +0100 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-01-30 22:41:14 +0100 |
commit | 28798b5d949826551740fc893d06e6424b77aa6a (patch) | |
tree | e235a7f49164a06c4b76df49ca61b89998d4ed81 /client/src/app/shared/utils.ts | |
parent | 13fc89f4a4b91b3da10493517de556240fb65463 (diff) | |
download | PeerTube-28798b5d949826551740fc893d06e6424b77aa6a.tar.gz PeerTube-28798b5d949826551740fc893d06e6424b77aa6a.tar.zst PeerTube-28798b5d949826551740fc893d06e6424b77aa6a.zip |
Client: replace simple tables by ng2 smart table component
Diffstat (limited to 'client/src/app/shared/utils.ts')
-rw-r--r-- | client/src/app/shared/utils.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/client/src/app/shared/utils.ts b/client/src/app/shared/utils.ts new file mode 100644 index 000000000..1dd6f96f0 --- /dev/null +++ b/client/src/app/shared/utils.ts | |||
@@ -0,0 +1,12 @@ | |||
1 | import { DatePipe } from '@angular/common'; | ||
2 | |||
3 | export class Utils { | ||
4 | |||
5 | static dateToHuman(date: String) { | ||
6 | return new DatePipe('en').transform(date, 'medium') | ||
7 | } | ||
8 | |||
9 | static getRowDeleteButton() { | ||
10 | return '<span class="glyphicon glyphicon-remove glyphicon-black"></span>'; | ||
11 | } | ||
12 | } | ||