Skip to content

Commit b3752e5

Browse files
authored
Merge pull request #116 from rictic/patch-1
Fix import url to point to actual file
2 parents bb4c0ca + bd31caa commit b3752e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common-utils.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
1010

1111
'use strict';
1212

13-
import { MIXIN_MATCH, VAR_ASSIGN } from './common-regex'
13+
import { MIXIN_MATCH, VAR_ASSIGN } from './common-regex.js'
1414

1515
/**
1616
* @param {Element} element
@@ -56,4 +56,4 @@ export function detectMixin(cssText) {
5656
MIXIN_MATCH.lastIndex = 0;
5757
VAR_ASSIGN.lastIndex = 0;
5858
return has;
59-
}
59+
}

0 commit comments

Comments
 (0)