Skip to content

Commit

Permalink
Merge branch 'development' into feat-build-with-packagr
Browse files Browse the repository at this point in the history
  • Loading branch information
Domainv authored Oct 11, 2018
2 parents 1b59ca0 + 9980218 commit b1d9775
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion demo/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ if (environment.production) {
enableProdMode();
}

platformBrowserDynamic().bootstrapModule(AppModule, {preserveWhitespaces: true});
platformBrowserDynamic().bootstrapModule(AppModule);
5 changes: 1 addition & 4 deletions demo/src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,5 @@
"exclude": [
"src/test.ts",
"**/*.spec.ts"
],
"angularCompilerOptions": {
"preserveWhitespaces": true
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,24 @@ import {
(click)="navTo(true)"><span>&lsaquo;</span>
</button>
&#8203; <!-- zero-width space needed for correct alignement
with preserveWhitespaces: false in Angular -->
<button class="current"
*ngIf="calendar.monthTitle"
(click)="view('month')"
><span>{{ calendar.monthTitle }}</span>
</button>
&#8203; <!-- zero-width space needed for correct alignement
with preserveWhitespaces: false in Angular -->
<button class="current" (click)="view('year')"
><span>{{ calendar.yearTitle }}</span></button>
&#8203; <!-- zero-width space needed for correct alignement
with preserveWhitespaces: false in Angular -->
<button class="next"
[disabled]="calendar.disableRightArrow"
[style.visibility]="calendar.hideRightArrow ? 'hidden' : 'visible'"
Expand Down

0 comments on commit b1d9775

Please sign in to comment.