fix(DomRegistry): fix svg support

This commit is contained in:
Victor Berchet
2016-05-26 16:17:35 -07:00
parent 0b6967fd74
commit 307d105d2c
3 changed files with 89 additions and 82 deletions

View File

@ -1,6 +1,6 @@
import {isString, isPresent} from '../../src/facade/lang';
const SVG_PREFIX = '@svg:';
const SVG_PREFIX = ':svg:';
var document = typeof global['document'] == 'object' ? global['document'] : null;