Browse Source

Do not auto show settings when not connected or in authorizing phase.

pull/156/merge
Simon Eisenmann 11 years ago
parent
commit
7e9f9e28ea
  1. 2
      static/js/directives/settings.js

2
static/js/directives/settings.js

@ -146,7 +146,7 @@ define(['jquery', 'underscore', 'text!partials/settings.html'], function($, _, t
}); });
$scope.maybeShowSettings = function() { $scope.maybeShowSettings = function() {
if ($scope.autoshowSettings) { if ($scope.autoshowSettings && mediaStream.connector.connected && !appData.authorizing()) {
$scope.autoshowSettings = false; $scope.autoshowSettings = false;
if (!$scope.loadedUser) { if (!$scope.loadedUser) {
$scope.layout.settings = true; $scope.layout.settings = true;

Loading…
Cancel
Save