msgCenter -> baMsgCenter

This commit is contained in:
nixa 2016-05-18 17:11:27 +03:00
parent e125febda6
commit 12a1056c12
9 changed files with 41 additions and 17 deletions

View file

@ -2,14 +2,14 @@ import {Component, ViewEncapsulation} from '@angular/core';
import {AppState} from '../../../app.state';
import {BaProfilePicturePipe} from '../../pipes';
import {MsgCenter} from '../../components/msgCenter';
import {BaMsgCenter} from '../../components/baMsgCenter';
import {BaScrollPosition} from '../../directives';
@Component({
selector: 'page-top',
styles: [require('./pageTop.scss')],
template: require('./pageTop.html'),
directives: [MsgCenter, BaScrollPosition],
directives: [BaMsgCenter, BaScrollPosition],
pipes: [BaProfilePicturePipe],
encapsulation: ViewEncapsulation.None
})