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

pull/3151/head
Leonard Kim 7 years ago committed by Saúl Ibarra Corretgé
parent 0aa2d81844
commit 7328dd9125
  1. 6
      modules/UI/UI.js

@ -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…
Cancel
Save