Skip to content

Commit

Permalink
fix(demo): https url and extra dependencies removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Étienne Lord committed Jul 22, 2021
1 parent e94e4a2 commit b5ad553
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion demo/src/app/common/entity-table/entity-table.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class AppEntityTableComponent implements OnInit, OnDestroy {
const ids = [2, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13];

const entities = ids.map(id => {
return { id , name: `Name ${id}`, description: `<b>Description ${id}</b>`, url: 'https://igouverte.org', image: 'http://www.igouverte.org/assets/img/Igo_logoavec.png'};
return { id , name: `Name ${id}`, description: `<b>Description ${id}</b>`, url: 'https://igouverte.org', image: 'https://www.igouverte.org/assets/img/Igo_logoavec.png'};
});
this.store.load(entities);
}
Expand Down
6 changes: 0 additions & 6 deletions demo/src/app/geo/print/print.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@
<mat-card-subtitle>Geo</mat-card-subtitle>
<mat-card-title>Print</mat-card-title>
<mat-card-content>
<li>npm install --save html2canvas@1.0.0-alpha.12</li>
<li>npm install --save jspdf@1.4.1</li>
<li>npm install --save file-saver@1.3.8</li>
<li>npm install --save jszip@3.1.5</li>
<li>npm install --save stream@0.0.2</li>

<li>Dependencies: LanguageService</li>

<br>
Expand Down

0 comments on commit b5ad553

Please sign in to comment.