docs(demos): fix circular dependency

This commit is contained in:
Drew Rygh
2015-10-21 13:30:09 -05:00
parent 74c82c42fa
commit 92dccd3258
16 changed files with 85 additions and 24 deletions

View File

@ -54,7 +54,6 @@ import {TabsPage} from './tabs/tabs';
export class AndroidAttribute {
constructor (platform: Platform, elementRef: ElementRef, renderer: Renderer) {
console.log('init');
this.isAndroid = platform.is('android');
renderer.setElementAttribute(elementRef, 'primary', this.isAndroid ? true : null);
}