Don't take fullscreen into account when detecting the layout

The fullscreen-layout class is just a layout modifier.
This commit is contained in:
Eric Lippmann 2017-11-29 15:06:27 +01:00
parent 890013c639
commit e77c3c8169
1 changed files with 6 additions and 1 deletions

View File

@ -34,7 +34,12 @@
var matched;
$.each(classList, function(index, item) {
if (null !== (matched = item.match(/^([a-z]+)-layout$/))) {
_this.currentLayout = matched[1];
var layout = matched[1];
if (layout !== 'fullscreen') {
_this.currentLayout = layout;
// Break loop
return false;
}
}
});
};