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);
|
||||
}
|
||||
|
||||
interfaceConfig.VERTICAL_FILMSTRIP
|
||||
&& $('body').addClass('vertical-filmstrip');
|
||||
const filmstripTypeClassname = interfaceConfig.VERTICAL_FILMSTRIP
|
||||
? 'vertical-filmstrip' : 'horizontal-filmstrip';
|
||||
|
||||
$('body').addClass(filmstripTypeClassname);
|
||||
|
||||
document.title = interfaceConfig.APP_NAME;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue