Browse Source

Merge pull request #227 from odotom/odotom-patch-1

Fixes typos.
j8
hristoterezov 10 years ago
parent
commit
2f5d090ca5
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      app.js
  2. 1
    1
      modules/UI/UI.js

+ 1
- 1
app.js View File

19
 function init() {
19
 function init() {
20
 
20
 
21
     APP.RTC.start();
21
     APP.RTC.start();
22
-    APP.xmpp.start(APP.UI.getCreadentials);
22
+    APP.xmpp.start(APP.UI.getCredentials());
23
     APP.statistics.start();
23
     APP.statistics.start();
24
     APP.connectionquality.init();
24
     APP.connectionquality.init();
25
 
25
 

+ 1
- 1
modules/UI/UI.js View File

591
     return VideoLayout.connectionIndicators[id].showMore();
591
     return VideoLayout.connectionIndicators[id].showMore();
592
 };
592
 };
593
 
593
 
594
-UI.getCreadentials = function () {
594
+UI.getCredentials = function () {
595
     var settings = this.getSettings();
595
     var settings = this.getSettings();
596
     return {
596
     return {
597
         bosh: document.getElementById('boshURL').value,
597
         bosh: document.getElementById('boshURL').value,

Loading…
Cancel
Save