primeng + font-awesome + bootstrap

This commit is contained in:
Darko Luketic
2018-03-29 23:40:08 +02:00
parent 6fe7f5e161
commit 054dc5afce
6 changed files with 22 additions and 28 deletions

View File

@@ -1,21 +1 @@
<!--The content below is only a placeholder and can be replaced.-->
<div style="text-align:center">
<h1>
Welcome to {{ title }}!
</h1>
<img width="300" alt="Angular Logo" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTAgMjUwIj4KICAgIDxwYXRoIGZpbGw9IiNERDAwMzEiIGQ9Ik0xMjUgMzBMMzEuOSA2My4ybDE0LjIgMTIzLjFMMTI1IDIzMGw3OC45LTQzLjcgMTQuMi0xMjMuMXoiIC8+CiAgICA8cGF0aCBmaWxsPSIjQzMwMDJGIiBkPSJNMTI1IDMwdjIyLjItLjFWMjMwbDc4LjktNDMuNyAxNC4yLTEyMy4xTDEyNSAzMHoiIC8+CiAgICA8cGF0aCAgZmlsbD0iI0ZGRkZGRiIgZD0iTTEyNSA1Mi4xTDY2LjggMTgyLjZoMjEuN2wxMS43LTI5LjJoNDkuNGwxMS43IDI5LjJIMTgzTDEyNSA1Mi4xem0xNyA4My4zaC0zNGwxNy00MC45IDE3IDQwLjl6IiAvPgogIDwvc3ZnPg==">
</div>
<h2>Here are some links to help you start: </h2>
<ul>
<li>
<h2><a target="_blank" rel="noopener" href="https://angular.io/tutorial">Tour of Heroes</a></h2>
</li>
<li>
<h2><a target="_blank" rel="noopener" href="https://github.com/angular/angular-cli/wiki">CLI Documentation</a></h2>
</li>
<li>
<h2><a target="_blank" rel="noopener" href="https://blog.angular.io/">Angular blog</a></h2>
</li>
</ul>
<router-outlet></router-outlet>

View File

@@ -4,7 +4,6 @@ import {Observable} from 'rxjs/Observable';
@Injectable()
export class DataService {
private rootURL = '/api/v1/data/';
constructor(private http: HttpClient) {
@@ -12,7 +11,6 @@ export class DataService {
public list(p: DataParams): Observable<Data[]> {
let params = new HttpParams();
params = params.append('response_type', 'list');
if (p.start !== undefined) {
@@ -167,7 +165,6 @@ export class DataService {
}
}
return this.http.get<Data>(this.rootURL, {params: params});
}
@@ -182,7 +179,6 @@ export class DataService {
public removeId(id: string) {
return this.http.delete(this.rootURL + id);
}
}
export class DataParams {

View File

@@ -1 +1 @@
/* You can add global styles to this file, and also import other style files */
@import "~bootstrap/scss/bootstrap";