feat(navbarStyle): set navbar color by config/attr

This commit is contained in:
Adam Bradley
2015-11-05 22:51:30 -06:00
parent 246fd977f2
commit f04181d468
3 changed files with 30 additions and 15 deletions

View File

@@ -1,24 +1,14 @@
import {Directive, ElementRef, Optional, Host, NgFor, NgIf, forwardRef, ViewContainerRef, Renderer} from 'angular2/angular2';
import {Directive, ElementRef, Optional, Host, NgFor, NgIf, forwardRef, ViewContainerRef} from 'angular2/angular2';
import {Ion} from '../ion';
import {IonicApp} from '../app/app';
import {Attr} from '../app/id';
import {Config} from '../../config/config';
import {ViewController} from '../nav/view-controller';
import {ConfigComponent} from '../../config/decorators';
import {Icon} from '../icon/icon';
@Directive({
selector: '[attr]',
inputs: ['attr']
})
class Attr {
constructor(private renderer: Renderer, private elementRef: ElementRef) {}
onInit() {
this.renderer.setElementAttribute(this.elementRef, this.attr, '');
}
}
/**
* _For basic Tabs usage, see the [Tabs section](../../../../components/#tabs)
* of the Component docs._