Skip to content

Commit 86fd8a4

Browse files
lennykeanadamdbradley
authored andcommitted
fix(picker): fix iOS 8 picker display
Fixes #7319
1 parent cca200e commit 86fd8a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/picker/picker-component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { ViewController } from '../nav/view-controller';
2424
template: `
2525
<div *ngIf="col.prefix" class="picker-prefix" [style.width]="col.prefixWidth">{{col.prefix}}</div>
2626
<div class="picker-opts" #colEle [style.width]="col.optionsWidth">
27-
<button *ngFor="let o of col.options; let i=index" [style.transform]="o._trans" [style.transitionDuration]="o._dur" [class.picker-opt-selected]="col.selectedIndex === i" [class.picker-opt-disabled]="o.disabled" (click)="optClick($event, i)" type="button" category="picker-opt">
27+
<button *ngFor="let o of col.options; let i=index" [style.transform]="o._trans" [style.transitionDuration]="o._dur" [style.webkitTransform]="o._trans" [style.webkitTransitionDuration]="o._dur" [class.picker-opt-selected]="col.selectedIndex === i" [class.picker-opt-disabled]="o.disabled" (click)="optClick($event, i)" type="button" category="picker-opt">
2828
{{o.text}}
2929
</button>
3030
</div>

0 commit comments

Comments
 (0)