Commit 28cdda8a authored by prumde's avatar prumde

Updated

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@175163 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 845d941a
...@@ -8,6 +8,7 @@ import { AppState } from '../ecm-store/reducers'; ...@@ -8,6 +8,7 @@ import { AppState } from '../ecm-store/reducers';
import { CartActions, WishListActions } from '../ecm-store/actions'; import { CartActions, WishListActions } from '../ecm-store/actions';
import { ECMSigninService } from './ecm-signin.service'; import { ECMSigninService } from './ecm-signin.service';
import { HostUrlService, getAssetURL } from '../host-url.service';
declare var encPwd: any; declare var encPwd: any;
...@@ -44,7 +45,14 @@ export class EcmSigninComponent implements OnInit { ...@@ -44,7 +45,14 @@ export class EcmSigninComponent implements OnInit {
statusPending: boolean = false; statusPending: boolean = false;
statusErrorMsg: string; statusErrorMsg: string;
constructor(public signinService: ECMSigninService, private store: Store<AppState>, private cartAction:CartActions, private wishListAction:WishListActions) { } hostUrl: string = '';
assetsUrl: string = 'ecm/assets';
constructor(public hostUrlService : HostUrlService, public signinService: ECMSigninService, private store: Store<AppState>, private cartAction:CartActions, private wishListAction:WishListActions)
{
this.hostUrl = this.hostUrlService.hostUrl;
this.assetsUrl = getAssetURL();
}
activeForm: any = 'signInForm'; activeForm: any = 'signInForm';
activeNGForm: NgForm; activeNGForm: NgForm;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment