This commit is contained in:
Max Lynch
2013-11-17 14:53:24 -06:00
parent 32673a2f3d
commit 531044e9b0
3 changed files with 9 additions and 9 deletions

View File

@ -23625,16 +23625,16 @@ angular.module('ionic.ui.content', [])
c.addClass('padding');
}
if(attr.hasHeader) {
if(attr.hasHeader == "true") {
c.addClass('has-header');
}
if(attr.hasSubheader) {
if(attr.hasSubheader == "true") {
c.addClass('has-subheader');
}
if(attr.hasFooter) {
if(attr.hasFooter == "true") {
c.addClass('has-footer');
}
if(attr.hasTabs) {
if(attr.hasTabs == "true") {
c.addClass('has-tabs');
}

View File

@ -38,16 +38,16 @@ angular.module('ionic.ui.content', [])
c.addClass('padding');
}
if(attr.hasHeader) {
if(attr.hasHeader == "true") {
c.addClass('has-header');
}
if(attr.hasSubheader) {
if(attr.hasSubheader == "true") {
c.addClass('has-subheader');
}
if(attr.hasFooter) {
if(attr.hasFooter == "true") {
c.addClass('has-footer');
}
if(attr.hasTabs) {
if(attr.hasTabs == "true") {
c.addClass('has-tabs');
}

View File

@ -66,7 +66,7 @@
on-refresh="onRefresh()"
on-refresh-opening="onRefreshOpening(amount)"
refresh-complete="refreshComplete"
has-header="true"
has-header="false"
has-subheader="true"
has-footer="true"
>