Merge branch 'updates' into feature-qrcode

This commit is contained in:
jfederico 2017-08-15 19:15:56 +00:00
commit ce4c9456a7
2 changed files with 9 additions and 3 deletions

View File

@ -14,12 +14,18 @@
// You should have received a copy of the GNU Lesser General Public License along
// with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
/** global: Meeting */
/** global: PreviousMeetings */
/** global: QRCode */
/** global: Recordings */
/** global: Turbolinks */
(function() {
var qrcode;
var waitForModerator = function(url) {
localStorage.setItem("waitingName", $('.meeting-user-name').val());
Window.localStorage.setItem("waitingName", $('.meeting-user-name').val());
$.post(url + "/wait", {name: $('.meeting-user-name').val()}, function(html) {
$(".center-panel-wrapper").html(html);
});
@ -35,7 +41,7 @@
Meeting.clear();
var nameInput = $('.meeting-user-name');
if (!nameInput.val()) {
var lastName = localStorage.getItem('lastJoinedName');
var lastName = Window.localStorage.getItem('lastJoinedName');
if (lastName !== 'undefined') {
nameInput.val(lastName);
}

View File

@ -14,4 +14,4 @@ deployment:
test:
pre:
- cp env .env
- cp sample.env .env