|
|
|
@ -33,6 +33,7 @@ define(["jquery", "angular", "underscore"], function($, angular, _) {
@@ -33,6 +33,7 @@ define(["jquery", "angular", "underscore"], function($, angular, _) {
|
|
|
|
|
appData.set($scope); |
|
|
|
|
|
|
|
|
|
// User related scope data.
|
|
|
|
|
$scope.authorizing = false; |
|
|
|
|
$scope.roomsHistory = []; |
|
|
|
|
$scope.defaults = { |
|
|
|
|
displayName: null, |
|
|
|
@ -110,6 +111,10 @@ define(["jquery", "angular", "underscore"], function($, angular, _) {
@@ -110,6 +111,10 @@ define(["jquery", "angular", "underscore"], function($, angular, _) {
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
appData.e.on("authorizing", function(event, authorizing) { |
|
|
|
|
$scope.authorizing = !!authorizing; |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
$scope.reset(); // Call once for bootstrap.
|
|
|
|
|
|
|
|
|
|
}]; |
|
|
|
|