style(dom_renderer): use const (#11229)

This commit is contained in:
PatrickJS 2016-09-06 10:25:16 -07:00 committed by Martin Probst
parent c25d1f7ecc
commit 70b0ab457b
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ const NAMESPACE_URIS = {
'xhtml': 'http://www.w3.org/1999/xhtml'
};
const TEMPLATE_COMMENT_TEXT = 'template bindings={}';
var TEMPLATE_BINDINGS_EXP = /^template bindings=(.*)$/;
const TEMPLATE_BINDINGS_EXP = /^template bindings=(.*)$/;
export abstract class DomRootRenderer implements RootRenderer {
protected registeredComponents: Map<string, DomRenderer> = new Map<string, DomRenderer>();