File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
src/material-experimental/mdc-slider Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -626,10 +626,15 @@ export class MatSlider extends _MatSliderMixinBase
626
626
/** The display value of the end thumb. */
627
627
_endValueIndicatorText : string ;
628
628
629
- /** Whether the browser supports pointer events. */
629
+ /**
630
+ * Whether the browser supports pointer events.
631
+ *
632
+ * We exclude iOS to mirror the MDC Foundation. The MDC Foundation cannot use pointer events on
633
+ * iOS because of this open bug - https://bugs.webkit.org/show_bug.cgi?id=220196.
634
+ */
630
635
private _SUPPORTS_POINTER_EVENTS = typeof PointerEvent !== 'undefined'
631
636
&& ! ! PointerEvent
632
- && ! this . _platform . IOS ; // We exclude iOS to mirror the MDC Foundation
637
+ && ! this . _platform . IOS ;
633
638
634
639
/** Subscription to changes to the directionality (LTR / RTL) context for the application. */
635
640
private _dirChangeSubscription : Subscription ;
You can’t perform that action at this time.
0 commit comments