File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
99*/
1010
1111import { LegacyElementMixin } from './legacy-element-mixin.js' ;
12- import { DomModule } from '../elements/dom-module.js' ;
13- import { strictTemplatePolicy } from '../utils/settings.js' ;
1412
1513let metaProps = {
1614 attached : true ,
Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ export const ElementMixin = dedupingMixin(base => {
281281 function getTemplateFromDomModule ( is ) {
282282 let template = null ;
283283 if ( is && allowTemplateFromDomModule ) {
284- template = DomModule . import ( is , 'template' )
284+ template = DomModule . import ( is , 'template' ) ;
285285 // Under strictTemplatePolicy, require any element with an `is`
286286 // specified to have a dom-module
287287 if ( strictTemplatePolicy && ! template ) {
You can’t perform that action at this time.
0 commit comments