Merge branch '2.0' of https://github.com/kkarich/ionic into feature-clear-input

This commit is contained in:
unknown
2016-04-14 09:03:06 -05:00
9 changed files with 104 additions and 48 deletions

View File

@ -84,7 +84,7 @@ export class Img {
}
private _loaded(isLoaded: boolean) {
this._elementRef.nativeElement.classList[isLoaded ? 'add': 'remove']('img-loaded');
this._elementRef.nativeElement.classList[isLoaded ? 'add' : 'remove']('img-loaded');
}
enable(shouldEnable: boolean) {

View File

@ -55,8 +55,8 @@ import {Platform} from '../../platform/platform';
* <ion-input type="tel"></ion-input>
* </ion-item>
*
* <ion-item clearInput>
* <ion-input placeholder="Username"></ion-input>
* <ion-item>
* <ion-input placeholder="Username" clearInput></ion-input>
* </ion-item>
* ```
*

View File

@ -11,7 +11,7 @@
<ion-item>
<ion-label>Text 1:</ion-label>
<ion-input class="e2eClearInput" [(ngModel)]="myParam" clearInput></ion-input>
<ion-input class="e2eClearInput" [(ngModel)]="myValue" clearInput></ion-input>
</ion-item>

View File

@ -190,7 +190,7 @@ export class Platform {
triggerReady() {
this._zone.run(() => {
this._readyResolve();
})
});
}
/**
@ -741,5 +741,5 @@ export interface PlatformVersion {
str?: string;
num?: number;
major?: number;
minor?: number
minor?: number;
}