contentTop -> baContentTop

This commit is contained in:
nixa 2016-05-18 17:04:35 +03:00
parent 1224cf17db
commit e125febda6
7 changed files with 11 additions and 10 deletions

View file

@ -3,12 +3,13 @@ import {Component} from '@angular/core';
import {AppState} from "../../../app.state";
@Component({
selector: 'content-top',
styles: [require('./contentTop.scss')],
template: require('./contentTop.html'),
selector: 'ba-content-top',
styles: [require('./baContentTop.scss')],
template: require('./baContentTop.html'),
})
export class ContentTop {
activePageTitle = '';
export class BaContentTop {
public activePageTitle:string = '';
constructor(private _state:AppState) {
this._state.subscribe('menu.activeLink', (activeLink) => {

View file

@ -0,0 +1 @@
export * from './baContentTop.component.ts';

View file

@ -1 +0,0 @@
export * from './contentTop.component.ts';

View file

@ -1,7 +1,7 @@
export * from './pageTop';
export * from './msgCenter';
export * from './sidebar';
export * from './contentTop';
export * from './baContentTop';
export * from './baCard';
export * from './baAmChart';
export * from './baChartistChart';