Merge branch 'updates' into feature-qrcode

This commit is contained in:
jfederico 2017-08-15 19:25:10 +00:00
commit 9db643a533
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@
var qrcode;
var waitForModerator = function(url) {
Window.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);
});
@ -41,7 +41,7 @@
Meeting.clear();
var nameInput = $('.meeting-user-name');
if (!nameInput.val()) {
var lastName = Window.localStorage.getItem('lastJoinedName');
var lastName = window.localStorage.getItem('lastJoinedName');
if (lastName !== 'undefined') {
nameInput.val(lastName);
}