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); }