Fix construct registry map reference

https://fedorahosted.org/freeipa/ticket/3235
This commit is contained in:
Petr Vobornik 2013-04-12 17:26:14 +02:00
parent 1d802d12a4
commit f14393f427

View File

@ -35,7 +35,7 @@ define(['dojo/_base/declare',
* Internal map for construction specifications.
* @protected
*/
_map: {},
_map: null,
/**
* Registers construction specification
@ -191,6 +191,10 @@ define(['dojo/_base/declare',
if (!lang.isArrayLike(spec.post_ops)) {
throw 'Argument exception: Invalid post_ops type.';
}
},
constructor: function(spec) {
this._map = {};
}
});