diff --git a/demo-shell-ng2/app/components/login/login.component.html b/demo-shell-ng2/app/components/login/login.component.html index bf97f55174..41944c2474 100644 --- a/demo-shell-ng2/app/components/login/login.component.html +++ b/demo-shell-ng2/app/components/login/login.component.html @@ -1,4 +1,4 @@ -
+

Login

diff --git a/demo-shell-ng2/app/components/login/login.ts b/demo-shell-ng2/app/components/login/login.ts index f11980a555..b2e8ee361a 100644 --- a/demo-shell-ng2/app/components/login/login.ts +++ b/demo-shell-ng2/app/components/login/login.ts @@ -2,13 +2,12 @@ import {Component} from 'angular2/core'; import {Router, ROUTER_DIRECTIVES} from 'angular2/router'; import {FORM_DIRECTIVES, ControlGroup, FormBuilder, Validators} from 'angular2/common'; import {Authentication} from '../../services/authentication'; -import {MDL} from '../MaterialDesignLiteUpgradeElement'; declare let componentHandler; @Component({ selector: 'login', moduleId: 'app/components/login/login', - directives: [MDL, ROUTER_DIRECTIVES, FORM_DIRECTIVES], + directives: [ROUTER_DIRECTIVES, FORM_DIRECTIVES], templateUrl: 'login.component.html', styleUrls: ['login.component.css'], })