[BUGFIX] Test property of the sidebar to set map position

This commit is contained in:
Xaver Maierhofer 2017-02-01 20:41:22 +01:00 committed by Geno
parent 72d2b63782
commit f53dc243f1
1 changed files with 2 additions and 4 deletions

View File

@ -21,12 +21,10 @@ define(function () {
sidebar.appendChild(container);
self.getWidth = function getWidth() {
if (sidebar.classList.contains('hidden')) {
if (sidebar.classList.contains('hidden') || button.offsetHeight === 0) {
return 0;
}
var small = window.matchMedia('(max-width: 630pt)');
return small.matches ? 0 : sidebar.offsetWidth;
return sidebar.offsetWidth;
};
self.add = function add(d) {