1
/* modules are non-graphical entities, similar to widgets */
2
3
IriSP.Module = function(Popcorn, config, Serializer) {
4
5
if (config === undefined || config === null) {
6
config = {}
7
}
8
9
this._Popcorn = Popcorn;
10
this._config = config;
11
this._serializer = Serializer;
12
};