Merge pull request #448 from jaredevantabor/login-route-fix

removing resolve on /login route
This commit is contained in:
jaredevantabor 2015-09-30 11:39:23 -04:00
commit 0bbb294e83

View File

@ -9,10 +9,5 @@ import {templateUrl} from '../shared/template-url/template-url.factory';
export default {
name: 'signIn',
route: '/login',
templateUrl: templateUrl('login/loginBackDrop'),
resolve: {
features: ['FeaturesService', function(FeaturesService) {
return FeaturesService.get();
}]
}
templateUrl: templateUrl('login/loginBackDrop')
};