Fixing linting
This commit is contained in:
parent
a7decc1948
commit
aa2358aa03
|
@ -20,7 +20,6 @@
|
|||
'ngFileSaver'
|
||||
]);
|
||||
|
||||
fetchData().then(bootstrapApplication);
|
||||
|
||||
function fetchData() {
|
||||
var initInjector = angular.injector(['ng']);
|
||||
|
@ -29,16 +28,18 @@
|
|||
return $http.get('http://localhost:8000/api/1/auth/providers').then(function(response) {
|
||||
lemur.constant('providers', response.data);
|
||||
}, function(errorResponse) {
|
||||
// Handle error case
|
||||
console.log('Could not fetch SSO providers')
|
||||
});
|
||||
}
|
||||
|
||||
function bootstrapApplication() {
|
||||
angular.element(document).ready(function() {
|
||||
angular.bootstrap(document, ["lemur"]);
|
||||
angular.bootstrap(document, ['lemur']);
|
||||
});
|
||||
}
|
||||
|
||||
fetchData().then(bootstrapApplication);
|
||||
|
||||
lemur.config(function ($stateProvider, $urlRouterProvider, $authProvider, providers) {
|
||||
$urlRouterProvider.otherwise('/welcome');
|
||||
$stateProvider
|
||||
|
|
Loading…
Reference in New Issue