Refactoring

Move Top Played part.
Move pipes and dashboard
Rename object folder to model
Doc pipes
This commit is contained in:
2018-03-20 23:05:46 +01:00
parent efac03a1c7
commit 6300e9cfc7
27 changed files with 239 additions and 175 deletions

View File

@@ -1,7 +1,7 @@
import { Component, EventEmitter, Input, Output } from '@angular/core';
import { Song } from './../object/song';
import { SortByPipe } from './../sort-by.pipe';
import { Song } from './../model/song';
import { SortByPipe } from './../pipes/sort-by.pipe';
@Component({
selector: 'app-song-table',
@@ -14,7 +14,7 @@ export class SongTableComponent {
// To activate button in interface var
bottomReached = false;
private sortable: boolean;
sortable: boolean;
constructor() { }