From ce3da970fbf6b67eb7b19155fc442dbd0ab9b411 Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Wed, 8 Jun 2016 23:21:10 -0500 Subject: [PATCH] fix(tap): export isActivatable as a const so its transpiled correctly --- src/components/tap-click/tap-click.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/tap-click/tap-click.ts b/src/components/tap-click/tap-click.ts index d6dbffd616..54d42d22dc 100644 --- a/src/components/tap-click/tap-click.ts +++ b/src/components/tap-click/tap-click.ts @@ -196,7 +196,7 @@ function getActivatableTarget(ele: HTMLElement) { /** * @private */ -export function isActivatable(ele: HTMLElement) { +export const isActivatable = function(ele: HTMLElement) { if (ACTIVATABLE_ELEMENTS.test(ele.tagName)) { return true; }