diff --git a/Controller.js b/Controller.js index b3a9c42..b8f7e76 100644 --- a/Controller.js +++ b/Controller.js @@ -40,6 +40,10 @@ jsOMS.Modules.Navigation = class { const length = e.length; for (let i = 0; i < length; ++i) { + if (e[i] === null) { + continue; + } + this.bindElement(e[i]); } };