提交 5f4aaa4a authored 作者: Stefan Yohansson's avatar Stefan Yohansson 提交者: Ken Rice

fix identation

上级 5d2ef7da
(function() { (function() {
'use strict'; 'use strict';
angular angular
.module('vertoControllers') .module('vertoControllers')
.controller('LoginController', ['$scope', '$http', '$location', 'verto', .controller('LoginController', ['$scope', '$http', '$location', 'verto',
function($scope, $http, $location, verto) { function($scope, $http, $location, verto) {
$scope.checkBrowser(); var preRoute = function() {
if(verto.data.connected) {
/* $location.path('/dialpad');
* Load the Configs before logging in }
* with cache buster }
*/ preRoute();
$http.get(window.location.pathname + '/config.json?cachebuster=' + Math.floor((Math.random()*1000000)+1))
.success(function(data) { verto.data.name = $scope.storage.data.name;
verto.data.email = $scope.storage.data.email;
/* save these for later as we're about to possibly over write them */
var name = verto.data.name; console.debug('Executing LoginController.');
var email = verto.data.email; }
]);
console.debug("googlelogin: " + data.googlelogin);
if (data.googlelogin){
$scope.googlelogin = data.googlelogin;
$scope.googleclientid = data.googleclientid;
}
angular.extend(verto.data, data);
/**
* use stored data (localStorage) for login, allow config.json to take precedence
*/
if (name != '' && data.name == '') {
verto.data.name = name;
}
if (email != '' && data.email == '') {
verto.data.email = email;
}
if (verto.data.login == '' && verto.data.password == '' && $scope.storage.data.login != '' && $scope.storage.data.password != '') {
verto.data.login = $scope.storage.data.login;
verto.data.password = $scope.storage.data.password;
}
if (verto.data.autologin == "true" && !verto.data.autologin_done) {
console.debug("auto login per config.json");
verto.data.autologin_done = true;
$scope.login();
}
});
verto.data.name = $scope.storage.data.name;
verto.data.email = $scope.storage.data.email;
console.debug('Executing LoginController.');
}
]);
})(); })();
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论