fix(tap): export isActivatable as a const so its transpiled correctly

This commit is contained in:
Adam Bradley
2016-06-08 23:21:10 -05:00
parent 14c7bc29a1
commit ce3da970fb

View File

@ -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;
}