ref(filmstrip): add class to body for horizontal filmstrip
This commit is contained in:
parent
0aa2d81844
commit
7328dd9125
|
@ -321,8 +321,10 @@ UI.start = function() {
|
||||||
SidePanels.init(eventEmitter);
|
SidePanels.init(eventEmitter);
|
||||||
}
|
}
|
||||||
|
|
||||||
interfaceConfig.VERTICAL_FILMSTRIP
|
const filmstripTypeClassname = interfaceConfig.VERTICAL_FILMSTRIP
|
||||||
&& $('body').addClass('vertical-filmstrip');
|
? 'vertical-filmstrip' : 'horizontal-filmstrip';
|
||||||
|
|
||||||
|
$('body').addClass(filmstripTypeClassname);
|
||||||
|
|
||||||
document.title = interfaceConfig.APP_NAME;
|
document.title = interfaceConfig.APP_NAME;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue