remove video from settings

This commit is contained in:
Gustavo Maximiliano Cortez 2014-09-02 12:10:47 -03:00
parent 76748bc5f9
commit 85894d56d9
3 changed files with 0 additions and 8 deletions

View File

@ -61,7 +61,6 @@ var defaultConfig = {
updateFrequencySeconds: 60 * 60 updateFrequencySeconds: 60 * 60
}, },
disableVideo: true,
verbose: 1, verbose: 1,
}; };
if (typeof module !== 'undefined') if (typeof module !== 'undefined')

View File

@ -8,7 +8,6 @@ angular.module('copayApp.controllers').controller('SettingsController', function
$scope.insightHost = config.blockchain.host; $scope.insightHost = config.blockchain.host;
$scope.insightPort = config.blockchain.port; $scope.insightPort = config.blockchain.port;
$scope.insightSecure = config.blockchain.schema === 'https'; $scope.insightSecure = config.blockchain.schema === 'https';
$scope.disableVideo = typeof config.disableVideo === undefined ? true : config.disableVideo;
$scope.forceNetwork = config.forceNetwork; $scope.forceNetwork = config.forceNetwork;
$scope.unitOpts = [{ $scope.unitOpts = [{
@ -85,7 +84,6 @@ angular.module('copayApp.controllers').controller('SettingsController', function
schema: $scope.insightSecure ? 'https' : 'http', schema: $scope.insightSecure ? 'https' : 'http',
}, },
network: network, network: network,
disableVideo: $scope.disableVideo,
unitName: $scope.selectedUnit.shortName, unitName: $scope.selectedUnit.shortName,
unitToSatoshi: $scope.selectedUnit.value, unitToSatoshi: $scope.selectedUnit.value,
unitDecimals: $scope.selectedUnit.decimals, unitDecimals: $scope.selectedUnit.decimals,

View File

@ -31,11 +31,6 @@
<select class="form-control" ng-model="selectedAlternative" ng-options="alternative.name for alternative in alternativeOpts" required> <select class="form-control" ng-model="selectedAlternative" ng-options="alternative.name for alternative in alternativeOpts" required>
</select> </select>
</fieldset> </fieldset>
<fieldset>
<legend>Videoconferencing</legend>
<input id="disableVideo-opt" type="checkbox" ng-model="disableVideo" class="form-control">
<label for="disableVideo-opt">Disable videoconferencing (for slow networks)</label>
</fieldset>
<fieldset> <fieldset>
<legend>Insight API server</legend> <legend>Insight API server</legend>
<label for="insight-host">Host</label> <label for="insight-host">Host</label>