From 85894d56d9f2466c98cefb573d968e82a2b3fad8 Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Tue, 2 Sep 2014 12:10:47 -0300 Subject: [PATCH] remove video from settings --- config.js | 1 - js/controllers/settings.js | 2 -- views/settings.html | 5 ----- 3 files changed, 8 deletions(-) diff --git a/config.js b/config.js index d71dd7624..f60e70edf 100644 --- a/config.js +++ b/config.js @@ -61,7 +61,6 @@ var defaultConfig = { updateFrequencySeconds: 60 * 60 }, - disableVideo: true, verbose: 1, }; if (typeof module !== 'undefined') diff --git a/js/controllers/settings.js b/js/controllers/settings.js index 89b9206ef..0e72fceb2 100644 --- a/js/controllers/settings.js +++ b/js/controllers/settings.js @@ -8,7 +8,6 @@ angular.module('copayApp.controllers').controller('SettingsController', function $scope.insightHost = config.blockchain.host; $scope.insightPort = config.blockchain.port; $scope.insightSecure = config.blockchain.schema === 'https'; - $scope.disableVideo = typeof config.disableVideo === undefined ? true : config.disableVideo; $scope.forceNetwork = config.forceNetwork; $scope.unitOpts = [{ @@ -85,7 +84,6 @@ angular.module('copayApp.controllers').controller('SettingsController', function schema: $scope.insightSecure ? 'https' : 'http', }, network: network, - disableVideo: $scope.disableVideo, unitName: $scope.selectedUnit.shortName, unitToSatoshi: $scope.selectedUnit.value, unitDecimals: $scope.selectedUnit.decimals, diff --git a/views/settings.html b/views/settings.html index 548c2cbb6..8da06caeb 100644 --- a/views/settings.html +++ b/views/settings.html @@ -31,11 +31,6 @@ -
- Videoconferencing - - -
Insight API server