Skip to content

Commit 1c25acb

Browse files
snirs90brandyscarney
authored andcommittedJun 5, 2017
fix(select): add cssClass for popover interface (#11769)
* fix(ionSelect): support cssClass for popover interface * fix default cssClass value
1 parent 64cac79 commit 1c25acb

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎src/components/select/select.ts

+6-1
Original file line numberDiff line numberDiff line change
@@ -306,10 +306,15 @@ export class Select extends BaseInput<any> implements OnDestroy {
306306
}
307307
}));
308308

309+
var popoverCssClass = 'select-popover';
310+
311+
// If the user passed a cssClass for the select, add it
312+
popoverCssClass += selectOptions.cssClass ? ' ' + selectOptions.cssClass : '';
313+
309314
overlay = new Popover(this._app, SelectPopover, {
310315
options: popoverOptions
311316
}, {
312-
cssClass: 'select-popover'
317+
cssClass: popoverCssClass
313318
}, this.config, this.deepLinker);
314319

315320
// ev.target is readonly.

0 commit comments

Comments
 (0)
Please sign in to comment.