rename src to ionic

This commit is contained in:
Andrew
2015-04-25 10:59:04 -05:00
parent 4473463909
commit 9039297110
231 changed files with 0 additions and 0 deletions

View File

@ -1,19 +0,0 @@
import {NgElement, Component, Template, PropertySetter} from 'angular2/angular2';
@Component({
selector: 'ion-content'
})
@Template({
inline: `
<div class="scroll-content">
<content></content>
</div>`
})
export class Content {
constructor(
@NgElement() element:NgElement
) {
this.domElement = element.domElement;
this.domElement.classList.add('content');
}
}

View File

@ -1,10 +0,0 @@
// Content
// --------------------------------------------------
$content-background-color: #fff !default;
.pane-container {
background-color: $content-background-color;
}