Adds dial-out UI.

This commit is contained in:
yanas
2017-05-19 10:12:24 -05:00
parent a1476c68f1
commit 2855ea1500
27 changed files with 1034 additions and 71 deletions

View File

@@ -192,7 +192,7 @@ class DialInNumbersForm extends Component {
}
/**
* Creates a React {@code Component} with a redonly HTMLInputElement as a
* Creates a React {@code Component} with a readonly HTMLInputElement as a
* trigger for displaying the dropdown menu. The {@code Component} will also
* display the currently selected number.
*
@@ -269,7 +269,7 @@ class DialInNumbersForm extends Component {
return [];
}
const formattedNumbeers = phoneRegions.map(region => {
const formattedNumbers = phoneRegions.map(region => {
const numbers = dialInNumbers[region];
return numbers.map(number => {
@@ -280,7 +280,7 @@ class DialInNumbersForm extends Component {
});
});
return Array.prototype.concat(...formattedNumbeers);
return Array.prototype.concat(...formattedNumbers);
}
/**