Skip to content
This repository has been archived by the owner on Feb 1, 2019. It is now read-only.

Commit

Permalink
Merge pull request #365 from poorgeek/fix-config
Browse files Browse the repository at this point in the history
Reset the app config
  • Loading branch information
doelleri committed Apr 27, 2015
2 parents 4e20493 + 3cc2273 commit caeae70
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions app/scripts/modules/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,25 @@
*/
angular.module('services.config', [])
.constant('Configuration', {
apiUrl: 'http://dev.hmda-pilot.ec2.devis.com/api',
confirmSessionReset: true,
apiUrl: 'http://localhost:8000',
confirmSessionReset: false,
progressDialog: {
name: 'progress',
controller: 'ProgressBarCtrl',
template: 'partials/progressBar.html',
showClose: false,
closeByDocument: false,
closeByEscape: false
}
},
loginDialogOptions: {
name: 'login',
controller: 'LoginCtrl',
template: 'partials/login.html',
className: 'login-modal',
trapFocus: true,
showClose: false,
closeByDocument: false,
closeByEscape: false
},
validPassword: 'p1l0t'
});

0 comments on commit caeae70

Please sign in to comment.