Skip to content

Commit ce3da97

Browse files
committed
fix(tap): export isActivatable as a const so its transpiled correctly
1 parent 14c7bc2 commit ce3da97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/tap-click/tap-click.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ function getActivatableTarget(ele: HTMLElement) {
196196
/**
197197
* @private
198198
*/
199-
export function isActivatable(ele: HTMLElement) {
199+
export const isActivatable = function(ele: HTMLElement) {
200200
if (ACTIVATABLE_ELEMENTS.test(ele.tagName)) {
201201
return true;
202202
}

0 commit comments

Comments
 (0)