From fd6a2c19b26fe3b8ec24018392fe0abaa9323b41 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Fri, 27 Jun 2014 17:09:12 -0300 Subject: [PATCH] fix disable video options --- config.js | 2 +- index.html | 2 +- js/services/controllerUtils.js | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/config.js b/config.js index 8a7edd1dd..5ae9d1252 100644 --- a/config.js +++ b/config.js @@ -118,6 +118,6 @@ var defaultConfig = { // theme list themes: ['default'], - disableVideo: 1, + disableVideo: true, verbose: 1, }; diff --git a/index.html b/index.html index e82c0473f..bd3604958 100644 --- a/index.html +++ b/index.html @@ -851,7 +851,7 @@
Videoconferencing - +
Insight API server diff --git a/js/services/controllerUtils.js b/js/services/controllerUtils.js index cbc293a1f..5faba8313 100644 --- a/js/services/controllerUtils.js +++ b/js/services/controllerUtils.js @@ -44,8 +44,7 @@ angular.module('copayApp.services') root.installStartupHandlers = function(wallet, $scope) { wallet.on('serverError', function(msg) { - notification.error('PeerJS Error', 'There was an error connecting to the PeerJS server.' - + (msg || 'Check you settings and Internet connection.')); + notification.error('PeerJS Error', 'There was an error connecting to the PeerJS server.' + (msg || 'Check you settings and Internet connection.')); root.onErrorDigest($scope); $location.path('addresses'); });