From ad3c07d1dee8ac7e78fd68a4cd3abf7e4ac01982 Mon Sep 17 00:00:00 2001 From: jfederico Date: Tue, 15 Aug 2017 19:10:34 +0000 Subject: [PATCH] Fixed issues reported by Scrutinizer --- app/assets/javascripts/landing.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/assets/javascripts/landing.js b/app/assets/javascripts/landing.js index ae2fe3c5..0eadd02b 100644 --- a/app/assets/javascripts/landing.js +++ b/app/assets/javascripts/landing.js @@ -14,10 +14,12 @@ // You should have received a copy of the GNU Lesser General Public License along // with BigBlueButton; if not, see . +/** global: Meeting */ + (function() { 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); }); @@ -33,7 +35,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); }