From 1fec37c2c8e6357d06c4a86de4c8fa2dcd0882f0 Mon Sep 17 00:00:00 2001 From: Maxim Khlobystov Date: Wed, 6 May 2015 15:28:30 -0400 Subject: [PATCH 1/2] Made sure the standard userlist doesn't show up in portrait orientation. --- .../app/client/stylesheets/users.less | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/bigbluebutton-html5/app/client/stylesheets/users.less b/bigbluebutton-html5/app/client/stylesheets/users.less index d521b897d7..ddb982fbcc 100755 --- a/bigbluebutton-html5/app/client/stylesheets/users.less +++ b/bigbluebutton-html5/app/client/stylesheets/users.less @@ -54,11 +54,16 @@ } #users { - -webkit-flex: 1 1 20%; - -moz-flex: 1 1 20%; - -ms-flex: 1 1 20%; - flex: 1 1 20%; - height: 100%; + @media @landscape { + -webkit-flex: 1 1 20%; + -moz-flex: 1 1 20%; + -ms-flex: 1 1 20%; + flex: 1 1 20%; + height: 100%; + } + @media @mobile-portrait-with-keyboard, @desktop-portrait, @mobile-portrait { + display: none !important; + } } #user-contents { From b4ed87cbd7e1bf060aebd866d4bddb083b5323f1 Mon Sep 17 00:00:00 2001 From: Maxim Khlobystov Date: Wed, 6 May 2015 15:41:46 -0400 Subject: [PATCH 2/2] Eliminated the gap above the portrait navbar by changing the way we set the page title. --- bigbluebutton-html5/app/client/globals.coffee | 1 + bigbluebutton-html5/app/client/main.html | 1 - bigbluebutton-html5/app/client/stylesheets/style.less | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bigbluebutton-html5/app/client/globals.coffee b/bigbluebutton-html5/app/client/globals.coffee index a81f92b2eb..53cbf1ad50 100755 --- a/bigbluebutton-html5/app/client/globals.coffee +++ b/bigbluebutton-html5/app/client/globals.coffee @@ -383,6 +383,7 @@ Handlebars.registerHelper "visibility", (section) -> setInSession 'webrtc_notification_is_displayed', false @onLoadComplete = -> + document.title = "BigBlueButton #{window.getMeetingName() ? 'HTML5'}" setDefaultSettings() Meteor.Users.find().observe({ diff --git a/bigbluebutton-html5/app/client/main.html b/bigbluebutton-html5/app/client/main.html index 09d27b2be9..931907d0ea 100755 --- a/bigbluebutton-html5/app/client/main.html +++ b/bigbluebutton-html5/app/client/main.html @@ -27,7 +27,6 @@