You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UIUtil.js 400B

12345678910111213141516
  1. /**
  2. * Created by hristo on 12/22/14.
  3. */
  4. module.exports = {
  5. /**
  6. * Returns the available video width.
  7. */
  8. getAvailableVideoWidth: function () {
  9. var PanelToggler = require("../side_pannels/SidePanelToggler");
  10. var rightPanelWidth
  11. = PanelToggler.isVisible() ? PanelToggler.getPanelSize()[0] : 0;
  12. return window.innerWidth - rightPanelWidth;
  13. }
  14. };