From d0b39e1c97da3eccc9ff07e766a246288c8467b9 Mon Sep 17 00:00:00 2001 From: Thomas Odorfer Date: Sat, 31 Jan 2015 22:11:02 +0100 Subject: [PATCH 1/2] Update app.js app.js: fix getCredentials - return object instead of function reference --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index a5ab0aac9..6afe0e642 100644 --- a/app.js +++ b/app.js @@ -19,7 +19,7 @@ var APP = function init() { APP.RTC.start(); - APP.xmpp.start(APP.UI.getCreadentials); + APP.xmpp.start(APP.UI.getCredentials()); APP.statistics.start(); APP.connectionquality.init(); From 254103e21f13e73202a71b6299c9cd012940aa78 Mon Sep 17 00:00:00 2001 From: Thomas Odorfer Date: Sat, 31 Jan 2015 22:14:53 +0100 Subject: [PATCH 2/2] Update UI.js fix typo UI.getCredentials --- modules/UI/UI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/UI/UI.js b/modules/UI/UI.js index 4c67e0397..95e72d004 100644 --- a/modules/UI/UI.js +++ b/modules/UI/UI.js @@ -591,7 +591,7 @@ UI.connectionIndicatorShowMore = function(id) return VideoLayout.connectionIndicators[id].showMore(); }; -UI.getCreadentials = function () { +UI.getCredentials = function () { var settings = this.getSettings(); return { bosh: document.getElementById('boshURL').value,