This commit is contained in:
guybedford 2015-07-15 14:28:07 +02:00
parent 5d2b95cd1c
commit 3a80fc45bc

View File

@ -214,7 +214,9 @@ SystemJSLoader.prototype.config = function(cfg) {
normalizeProp = true;
for (var p in v) {
if (normalizeProp)
if (c == 'meta' && p[0] == '*')
this[c][p] = v[p];
else if (normalizeProp)
this[c][this.normalizeSync(p)] = v[p];
else
this[c][p] = v[p];