From 3a80fc45bce2acee7a63b3f97bc06e055a1fa17b Mon Sep 17 00:00:00 2001 From: guybedford Date: Wed, 15 Jul 2015 14:28:07 +0200 Subject: [PATCH] implements #587 --- lib/core.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/core.js b/lib/core.js index 85e1cc46..074c5e6a 100644 --- a/lib/core.js +++ b/lib/core.js @@ -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];