aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/features/app/components/App.js4
-rw-r--r--app/features/welcome/components/Welcome.js2
2 files changed, 3 insertions, 3 deletions
diff --git a/app/features/app/components/App.js b/app/features/app/components/App.js
index c34bbbf..7164b04 100644
--- a/app/features/app/components/App.js
+++ b/app/features/app/components/App.js
@@ -69,8 +69,8 @@ class App extends Component<*> {
*/
_listenOnProtocolMessages(event, inputURL: string) {
// Remove trailing slash if one exists.
- if (inputURL.substr(-1) === '/') {
- inputURL = inputURL.substr(0, inputURL.length - 1); // eslint-disable-line no-param-reassign
+ if (inputURL.slice(-1) === '/') {
+ inputURL = inputURL.slice(0, -1); // eslint-disable-line no-param-reassign
}
const conference = createConferenceObjectFromURL(inputURL);
diff --git a/app/features/welcome/components/Welcome.js b/app/features/welcome/components/Welcome.js
index d5a7090..0dad330 100644
--- a/app/features/welcome/components/Welcome.js
+++ b/app/features/welcome/components/Welcome.js
@@ -162,7 +162,7 @@ class Welcome extends Component<Props, State> {
*/
_animateRoomnameChanging(word: string) {
let animateTimeoutId;
- const roomPlaceholder = this.state.roomPlaceholder + word.substr(0, 1);
+ const roomPlaceholder = this.state.roomPlaceholder + word.slice(0, 1);
if (word.length > 1) {
animateTimeoutId