style(shadowCSS) add a missing ";"

This commit is contained in:
Victor Berchet
2015-02-17 17:06:53 +01:00
parent 4efecd7e0e
commit cff106ecd6

View File

@@ -495,7 +495,7 @@ var ShadowCSS = {
// remove :host since it should be unnecessary
var t = p.trim().replace(polyfillHostRe, '');
if (t && (splits.indexOf(t) < 0) && (t.indexOf(attrName) < 0)) {
p = t.replace(/([^:]*)(:*)(.*)/, '$1' + attrName + '$2$3')
p = t.replace(/([^:]*)(:*)(.*)/, '$1' + attrName + '$2$3');
}
return p;
}).join(sep);