diff --git a/src/core/core.js b/src/core/core.js index 31a4c02..f73af9d 100644 --- a/src/core/core.js +++ b/src/core/core.js @@ -57,6 +57,11 @@ Core.prototype.getElement = function(id) { * @param {string} module the name of the module */ Core.prototype.start = function(module) { + if(!module) { + this.startAll(); + return; + } + var cModule = this.modules[module], el = this.getElement(module);