ref(filmstrip): add class to body for horizontal filmstrip

This commit is contained in:
Leonard Kim 2018-06-25 14:18:08 -07:00 committed by Saúl Ibarra Corretgé
parent 0aa2d81844
commit 7328dd9125
1 changed files with 4 additions and 2 deletions

View File

@ -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;
};