Skip to content

Commit

Permalink
fix(demo): add loading template for fully dynamic example
Browse files Browse the repository at this point in the history
  • Loading branch information
tomastrajan committed Oct 10, 2019
1 parent 51d576f commit 12f09ba
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,16 @@ <h2 id="multiple-different-dynamic-elements">
<div class="implementation" *ngIf="example3">
<div class="actions">
<ng-container *ngFor="let c of dynamicConfigs">
<ng-template #loading
>Loading <{{ c.tag }}>...&nbsp;&nbsp;</ng-template
>
<ax-lazy-element
*axLazyElementDynamic="c.tag; url: c.url; module: c.isModule"
*axLazyElementDynamic="
c.tag;
url: c.url;
module: c.isModule;
loadingTemplate: loading
"
(click)="performAction(c.actionName)"
raised
>
Expand Down

0 comments on commit 12f09ba

Please sign in to comment.