Skip to content

Commit

Permalink
feat(watch): Calibers are now suggested when adding a watch
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuNls committed Mar 15, 2017
1 parent 8c6eddf commit 60b9c7a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/pages/watch/watch.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,18 @@
[id] = "'caliber'"
[control] = "watchForm.controls['caliber']"
[submitAttempt] = "submitAttempt"
[model] = true
[(value)] = "watchModel.caliber"
[model] = true
[(value)] = "watchModel.caliber"
(valueChange) = filterCaliber($event)
>
</mobile-input>
<div class="suggestions" *ngIf="filteredCaliberList.length > 0">
<ul>
<li *ngFor="let caliber of filteredCaliberList">
<a (click)="selectCaliber(caliber)">{{ caliber }}</a>
</li>
</ul>
</div>

<mobile-input
[id] = "'year'"
Expand Down

0 comments on commit 60b9c7a

Please sign in to comment.