Skip to content

Commit b3cca71

Browse files
committed
fixup! fix(material-experimental/mdc-slider): code review changes
1 parent 1f9709c commit b3cca71

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/cdk/testing/testbed/fake-events/dispatch-events.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export function dispatchPointerEvent(node: Node, type: string, clientX = 0, clie
6565
* Shorthand to dispatch a touch event on the specified coordinates.
6666
* @docs-private
6767
*/
68-
export function dispatchTouchEvent(node: Node, type: string, pageX = 0, pageY = 0, clientX = 0, clientY = 0) {
68+
export function dispatchTouchEvent(node: Node, type: string, pageX = 0, pageY = 0, clientX = 0,
69+
clientY = 0) {
6970
return dispatchEvent(node, createTouchEvent(type, pageX, pageY, clientX, clientY));
7071
}

0 commit comments

Comments
 (0)