[bug] fix edge rendering on page load

This commit is contained in:
zombieFox 2020-06-14 15:43:08 +01:00
parent 3ae2da973c
commit 65333c24b9
2 changed files with 7 additions and 1 deletions

View File

@ -133,12 +133,17 @@ var edge = (function() {
}
};
var init = function() {
box.close();
};
// exposed methods
return {
mod: mod,
bind: bind,
render: render,
box: box
box: box,
init: init
};
})();

View File

@ -19,5 +19,6 @@ background.init();
modal.init();
shade.init();
dropdown.init();
edge.init();
version.init();
ready.init();