mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
tests(): move has-* to classes for ion-content elements
This commit is contained in:
@@ -22,9 +22,7 @@
|
||||
on-refresh="onRefresh()"
|
||||
on-refresh-opening="onRefreshOpening(amount)"
|
||||
padding="true"
|
||||
has-tabs="true"
|
||||
has-header="true"
|
||||
>
|
||||
class="has-tabs has-header">
|
||||
<ion-refresher></ion-refresher>
|
||||
<div id="search-box" class="bar bar-header item-input-inset">
|
||||
<label class="item-input-wrapper">
|
||||
|
||||
@@ -21,9 +21,7 @@
|
||||
on-refresh="onRefresh()"
|
||||
on-refresh-opening="onRefreshOpening(amount)"
|
||||
refresh-complete="refreshComplete"
|
||||
has-tabs="true"
|
||||
has-header="true"
|
||||
>
|
||||
class="has-header has-tabs">
|
||||
<div ng-repeat="items in items">{{$index}}</div>
|
||||
</ion-content>
|
||||
<nav id="tab-bar" class="tabs tabs-icon-top">
|
||||
|
||||
@@ -56,9 +56,7 @@
|
||||
|
||||
<ion-content id="container"
|
||||
has-scroll-x="true"
|
||||
has-tabs="true"
|
||||
has-header="true"
|
||||
>
|
||||
class="has-header has-tabs">
|
||||
<div style="height: 4000px; width: 4000px; background: url('tree_bark.png') repeat"></div>
|
||||
</ion-content>
|
||||
<nav id="tab-bar" class="tabs tabs-icon-top">
|
||||
|
||||
@@ -17,11 +17,11 @@
|
||||
<script>
|
||||
angular.module('starter', ['ionic', 'starter.services', 'starter.controllers'])
|
||||
.run(function($templateCache){
|
||||
$templateCache.put("templates/about.html","<ion-view title='About Ionic'><ion-content has-header='true' has-tabs='true' padding='true'></ion-content></ion-view>");
|
||||
$templateCache.put("templates/about.html","<ion-view title='About Ionic'><ion-content class='has-header has-tabs' padding='true'></ion-content></ion-view>");
|
||||
|
||||
$templateCache.put("templates/tabs.html","<ion-tabs tabs-style='tabs-icon-top' tabs-type='tabs-default'><ion-tab title='Pets' icon='icon ion-home' href='#/tab/pets'><ion-nav-view name='pets-tab'></ion-nav-view></ion-tab><ion-tab title='About' icon='icon ion-search' href='#/tab/about'><ion-nav-view name='about-tab'></ion-nav-view></ion-tab></ion-tabs>");
|
||||
$templateCache.put("templates/pet-index.html","<ion-view title='Pet Information'><ion-content has-header='true' has-tabs='true'><div class='list'><a class='item item-thumbnail-left' ng-repeat='pet in pets' ng-href='#/tab/pet/{{pet.id}}' ><img ng-src='{{pet.thumbnail}}'><h3>{{pet.title}}</h3><p>{{pet.description}}</p></a></div></ion-content></ion-view>");
|
||||
$templateCache.put("templates/pet-detail.html","<ion-view title='{{pet.title}}'><ion-content has-header='true' padding='true'><p>{{ pet.description }}</p><p><a class='button button-small icon ion-arrow-left-b' href='#/tab/pets'> All Pets</a></p><button class='button button-small' ng-click='clearViewHistories()'>clearViewHistories</button><button class='button button-small' ng-click='historyConsole()'>Console Log</button><pre>{{ $viewHistory | json }}</pre></ion-content></ion-view>");
|
||||
$templateCache.put("templates/pet-index.html","<ion-view title='Pet Information'><ion-content class='has-header has-tabs'><div class='list'><a class='item item-thumbnail-left' ng-repeat='pet in pets' ng-href='#/tab/pet/{{pet.id}}' ><img ng-src='{{pet.thumbnail}}'><h3>{{pet.title}}</h3><p>{{pet.description}}</p></a></div></ion-content></ion-view>");
|
||||
$templateCache.put("templates/pet-detail.html","<ion-view title='{{pet.title}}'><ion-content class='has-header' padding='true'><p>{{ pet.description }}</p><p><a class='button button-small icon ion-arrow-left-b' href='#/tab/pets'> All Pets</a></p><button class='button button-small' ng-click='clearViewHistories()'>clearViewHistories</button><button class='button button-small' ng-click='historyConsole()'>Console Log</button><pre>{{ $viewHistory | json }}</pre></ion-content></ion-view>");
|
||||
|
||||
})
|
||||
.config(function($stateProvider, $urlRouterProvider) {
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
<input type="text" value="header input">
|
||||
</label>
|
||||
</header>
|
||||
<ion-content has-header="true" padding="true" overflow-scroll="false">
|
||||
<ion-content class="has-header" padding="true" overflow-scroll="false">
|
||||
<div class="list">
|
||||
<label class="item item-input">
|
||||
<span class="input-label">Your Name</span>
|
||||
@@ -71,7 +71,7 @@
|
||||
<h1 class="title">New Contact</h1>
|
||||
<button class="button button-clear button-primary" ng-click="closeModal()" ion-stop-event="click">Cancel</button>
|
||||
</header>
|
||||
<ion-content has-header="true">
|
||||
<ion-content class='has-header'>
|
||||
<div class="padding">
|
||||
<div class="list">
|
||||
<label class="item item-input">
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<h1 class="title">Header!</h1>
|
||||
</ion-header-bar>
|
||||
|
||||
<ion-content scroll="true" ng-controller="ContentCtrl" padding="false" has-header="true" ng-class="{'has-subheader': $root.isSub}">
|
||||
<ion-content scroll="true" ng-controller="ContentCtrl" padding="false" class="has-header" ng-class="{'has-subheader': $root.isSub}">
|
||||
|
||||
<ion-refresher on-refresh="onRefresh()" pulling-text="pull!" refreshing-text="refreshing!"></ion-refresher>
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<ion-content has-header="true">
|
||||
<ion-content class="has-header">
|
||||
|
||||
<div contenteditable="true">
|
||||
Hello!
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
<button class="button" ng-click="modal.show()">Modal</button>
|
||||
</div>
|
||||
</ion-header-bar>
|
||||
<ion-content has-header="true">
|
||||
<ion-content class="has-header">
|
||||
<ion-list>
|
||||
|
||||
<div class="item item-input-inset">
|
||||
@@ -41,7 +41,7 @@
|
||||
<header class="bar bar-header bar-assertive">
|
||||
<h1 class="title">New Contact</h1>
|
||||
</header>
|
||||
<ion-content has-header="true">
|
||||
<ion-content class="has-header">
|
||||
<div class="padding">
|
||||
<div class="list">
|
||||
<label class="item item-input">
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<div ng-controller="Ctrl">
|
||||
<ion-header-bar title="title" type="bar-positive">
|
||||
</ion-header-bar>
|
||||
<ion-content has-header="true" style="background: lightblue;">
|
||||
<ion-content class="has-header" style="background: lightblue;">
|
||||
<h1>outer</h1>
|
||||
<ion-scroll style="background: lightgreen; height: 200px;">
|
||||
<h1>inner</h1>
|
||||
|
||||
@@ -51,9 +51,9 @@
|
||||
<body ng-controller="AppCtrl">
|
||||
<ion-side-menus>
|
||||
<ion-pane ion-side-menu-content>
|
||||
<ion-header-bar
|
||||
title="'Title'"
|
||||
type="bar-primary"></ion-header-bar>
|
||||
<ion-header-bar class="bar-primary">
|
||||
<h1 class="title">Title</h1>
|
||||
</ion-header-bar>
|
||||
|
||||
<div class="bar bar-subheader">
|
||||
<div class="button-bar">
|
||||
@@ -63,17 +63,11 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ion-content
|
||||
has-header="false"
|
||||
has-subheader="true"
|
||||
has-footer="true"
|
||||
overflow-scroll="true"
|
||||
>
|
||||
|
||||
<ion-content class="has-header has-subheader has-footer overflow-scroll">
|
||||
<div style="height: 3000px; width: 100%; background: url('tree_bark.png') repeat"></div>
|
||||
</ion-content>
|
||||
|
||||
<ion-footer-bar type="bar-assertive">
|
||||
<ion-footer-bar class="bar-assertive">
|
||||
<h1 class="title">Footer</h1>
|
||||
</ion-footer-bar>
|
||||
</ion-pane>
|
||||
@@ -93,7 +87,7 @@
|
||||
<header class="bar bar-header bar-assertive">
|
||||
<h1 class="title">Right</h1>
|
||||
</header>
|
||||
<ion-content has-header="true">
|
||||
<ion-content class="has-header">
|
||||
<ul class="list">
|
||||
<a href="#" class="item" ng-repeat="item in list">
|
||||
{{item.text}}
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<header class="bar bar-header bar-danger">
|
||||
<h1 class="title">Beans</h1>
|
||||
</header>
|
||||
<ion-content has-header="true"class="reveal-animation">
|
||||
<ion-content class="has-header" class="reveal-animation">
|
||||
<div ng-controller="TestCtrl">
|
||||
|
||||
<div class="list">
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
<body ng-controller="ThisCtrl">
|
||||
<ion-pane>
|
||||
|
||||
<ion-content has-header="true" scroll="false">
|
||||
<ion-content class="has-header" scroll="false">
|
||||
<h3>Hourly Forecast</h3>
|
||||
<ion-scroll direction="x" style="width: 100%; height: 20%;">
|
||||
<div class="hours">
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
<h1 class="title">Slide me</h1>
|
||||
<button class="button button-icon ion-navicon" ng-click="openRight()"></button>
|
||||
</header>
|
||||
<ion-content has-header="true">
|
||||
<ion-content class="has-header">
|
||||
<ion-toggle ng-model="$root.$draggy">Hello</ion-toggle>
|
||||
<input type="range" ng-model="$root.menuWidth" min="0" max="300">
|
||||
<h1>Content</h1>
|
||||
@@ -29,7 +29,7 @@
|
||||
<header class="bar bar-header bar-assertive">
|
||||
<h1 class="title">Left</h1>
|
||||
</header>
|
||||
<ion-content has-header="true">
|
||||
<ion-content class="has-header">
|
||||
<h3>value = {{value}}</h3>
|
||||
<ul class="list">
|
||||
<a href="#" class="item" ng-repeat="item in list">
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
<header class="bar bar-header bar-assertive">
|
||||
<div class="title">Left Menu</div>
|
||||
</header>
|
||||
<ion-content has-header="true">
|
||||
<ion-content class="has-header">
|
||||
<div class="list">
|
||||
<a ng-click="closeMenu()" href="#/event/check-in" class="item">Check-in</a>
|
||||
<a ng-click="closeMenu()" href="#/event/attendees" class="item">Attendees</a>
|
||||
@@ -53,7 +53,7 @@
|
||||
|
||||
<script id="home.html" type="text/ng-template">
|
||||
<ion-view title="'Welcome'">
|
||||
<ion-content has-header="true" padding="true">
|
||||
<ion-content class="has-header" padding="true">
|
||||
<p>Swipe to the right to reveal the left menu.</p>
|
||||
<div class="button" ng-click="sideMenuController.toggleLeft()" style="position: absolute; left: 100px; top: 200px;">
|
||||
Left Menu
|
||||
@@ -89,7 +89,7 @@
|
||||
|
||||
<script id="check-in.html" type="text/ng-template">
|
||||
<ion-view title="'Event Check-in'" hide-back-button="true">
|
||||
<ion-content has-header="true">
|
||||
<ion-content class="has-header">
|
||||
<form class="list" ng-show="showForm">
|
||||
<div class="item item-divider">
|
||||
Attendee Info
|
||||
@@ -129,7 +129,7 @@
|
||||
|
||||
<script id="attendees.html" type="text/ng-template">
|
||||
<ion-view title="'Event Attendees'">
|
||||
<ion-content has-header="true">
|
||||
<ion-content class="has-header">
|
||||
<div class="list">
|
||||
<ion-toggle ng-repeat="attendee in attendees | orderBy:'firstname' | orderBy:'lastname'"
|
||||
ng-model="attendee.arrived"
|
||||
|
||||
@@ -78,7 +78,7 @@
|
||||
</div>
|
||||
</ion-slide>
|
||||
<ion-slide>
|
||||
<ion-content has-header="true">
|
||||
<ion-content class="has-header">
|
||||
<div style="width: 300px; height: 2000px; background: url('tree_bark.png') repeat"></div>
|
||||
</ion-content>
|
||||
</ion-slide>
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
<div ng-controller="SlideCtrl">
|
||||
<ion-pane>
|
||||
<ion-header-bar left-buttons="leftButtons" right-buttons="rightButtons" title=""></ion-header-bar>
|
||||
<ion-content has-header="true">
|
||||
<ion-content class="has-header">
|
||||
<ion-slide-box>
|
||||
<ion-slide ng-repeat="page in pages">
|
||||
{{page.text}}
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
<header class="bar bar-header bar-dark">
|
||||
<h1 class="title">Tab Bars</h1>
|
||||
</header>
|
||||
<ion-content has-header="true" has-tabs="true">
|
||||
<ion-content class="has-header has-tabs">
|
||||
<h1>Home</h1>
|
||||
<ul class="list">
|
||||
<a href="#" class="list-item" ng-repeat="item in items">
|
||||
@@ -48,7 +48,7 @@
|
||||
<header class="bar bar-header bar-success">
|
||||
<h1 class="title">About</h1>
|
||||
</header>
|
||||
<ion-content has-header="true" has-tabs="true">
|
||||
<ion-content class="has-header has-tabs">
|
||||
<h1>About Us</h1>
|
||||
</ion-content>
|
||||
</ion-tab>
|
||||
@@ -57,7 +57,7 @@
|
||||
<header class="bar bar-header bar-dark">
|
||||
<h1 class="title">Settings</h1>
|
||||
</header>
|
||||
<ion-content has-header="true" has-tabs="true">
|
||||
<ion-content class="has-header has-tabs">
|
||||
<h1>Settings</h1>
|
||||
</ion-content>
|
||||
</ion-tab>
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
<ion-tabs tabs-style="tabs-top tabs-positive tabs-icon-top">
|
||||
<ion-tab ng-repeat="p in pages" title="{{p.id}}" icon="{{p.icon}}">
|
||||
<header class="bar bar-positive bar-header"></header>
|
||||
<ion-content has-header="true" has-subheader="true">
|
||||
<ion-content class="has-header has-subheader">
|
||||
<p></p>
|
||||
<b>{{p.id}}</b>
|
||||
<p>...</p>
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
<h1 class="title">Tasks</h1>
|
||||
<button class="button button-clear" ng-click="isDeletingItems = !isDeletingItems">Edit</button>
|
||||
</header>
|
||||
<ion-content has-header="true" has-subheader="true" on-refresh="onRefresh()" on-scroll="scroll(scrollTop, scrollLeft)">
|
||||
<ion-content class="has-header has-subheader" on-refresh="onRefresh()" on-scroll="scroll(scrollTop, scrollLeft)">
|
||||
|
||||
<ion-refresher></ion-refresher>
|
||||
|
||||
@@ -87,7 +87,7 @@
|
||||
<header class="bar bar-header bar-positive">
|
||||
<h1 class="title">Deadlines</h1>
|
||||
</header>
|
||||
<ion-content has-header="true" padding="true">
|
||||
<ion-content clsas="has-header" padding="true">
|
||||
<h1>Deadlines</h1>
|
||||
</ion-content>
|
||||
</ion-tab>
|
||||
@@ -96,7 +96,7 @@
|
||||
<header class="bar bar-header bar-positive">
|
||||
<h1 class="title">Settings</h1>
|
||||
</header>
|
||||
<ion-content has-header="true" padding="true">
|
||||
<ion-content class="has-header" padding="true">
|
||||
<h1>Settings</h1>
|
||||
</ion-content>
|
||||
</ion-tab>
|
||||
@@ -105,7 +105,7 @@
|
||||
<header class="bar bar-header bar-positive">
|
||||
<h1 class="title">Settings</h1>
|
||||
</header>
|
||||
<ion-content has-header="true" padding="true">
|
||||
<ion-content class="has-header" padding="true">
|
||||
<h1>Settings</h1>
|
||||
</ion-content>
|
||||
</ion-tab>
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
<div ng-controller="MyCtrl">
|
||||
<ion-header-bar title="'Tap Inputs'" type="bar-positive"></ion-header-bar>
|
||||
|
||||
<ion-content has-header="true">
|
||||
<ion-content class="has-header">
|
||||
<form name="myForm">
|
||||
|
||||
<div class="list">
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
<header class="bar bar-header bar-danger">
|
||||
<h1 class="title">Toggle</h1>
|
||||
</header>
|
||||
<ion-content has-header="true" class="reveal-animation">
|
||||
<ion-content class="has-header reveal-animation">
|
||||
<div ng-controller="TestCtrl">
|
||||
|
||||
<div class="list">
|
||||
|
||||
@@ -56,7 +56,7 @@
|
||||
|
||||
<script id="forgot-password.html" type="text/ng-template">
|
||||
<ion-view title="Forgot Password" hide-nav-bar="true">
|
||||
<ion-content has-header="true" padding="true">
|
||||
<ion-content class="has-header" padding="true">
|
||||
<p>This ion-view hides the nav bar using the hideNavBar attribute.</p>
|
||||
<p>
|
||||
<button ng-click="hideNavBar()">Hide Nav Bar</button>
|
||||
@@ -81,7 +81,7 @@
|
||||
|
||||
<script id="contact.html" type="text/ng-template">
|
||||
<ion-view hide-back-button="true">
|
||||
<ion-content has-header="true" padding="true">
|
||||
<ion-content class="has-header" padding="true">
|
||||
<p>The views title is blank on purpose.</p>
|
||||
<p>The hideBackButton attribute is "true" for this view.</p>
|
||||
<p>@drifty</p>
|
||||
@@ -117,7 +117,7 @@
|
||||
|
||||
<ion-tab title="Info" icon="ion-information-circled">
|
||||
<ion-view title="Information">
|
||||
<ion-content class="has-header has-subheader" padding="true">
|
||||
<ion-content class="has-header has-subheader" padding="true">
|
||||
<h3>Information</h3>
|
||||
<p>
|
||||
This is a sample seed project for the Ionic Framework. Please change it to match your needs.
|
||||
|
||||
Reference in New Issue
Block a user