chore(): don't underscore private vars for directives

This commit is contained in:
Tim Lancina
2016-01-13 14:31:07 -06:00
parent db41babfc4
commit b0a4a36ded

View File

@ -7,22 +7,22 @@ import {Platform} from '../../platform/platform';
* @private
*/
export class DisplayWhen {
protected _isMatch: boolean = false;
private _platform: Platform;
private _conditions: string[];
protected isMatch: boolean = false;
private platform: Platform;
private conditions: string[];
constructor(conditions: string, platform: Platform, ngZone: NgZone) {
this._platform = platform;
this.platform = platform;
if (!conditions) return;
this._conditions = conditions.split(',');
this.conditions = conditions.split(',');
// check if its one of the matching platforms first
// a platform does not change during the life of an app
for (let i = 0; i < this._conditions.length; i++) {
if (this._conditions[i] && platform.is(this._conditions[i])) {
this._isMatch = true;
for (let i = 0; i < this.conditions.length; i++) {
if (this.conditions[i] && platform.is(this.conditions[i])) {
this.isMatch = true;
return;
}
}
@ -40,15 +40,15 @@ export class DisplayWhen {
}
orientation() {
for (let i = 0; i < this._conditions.length; i++) {
for (let i = 0; i < this.conditions.length; i++) {
if (this._conditions[i] == 'portrait') {
this._isMatch = this._platform.isPortrait();
if (this.conditions[i] == 'portrait') {
this.isMatch = this.platform.isPortrait();
return true;
}
if (this._conditions[i] == 'landscape') {
this._isMatch = this._platform.isLandscape();
if (this.conditions[i] == 'landscape') {
this.isMatch = this.platform.isLandscape();
return true;
}
}
@ -88,7 +88,7 @@ export class ShowWhen extends DisplayWhen {
* @private
*/
get hidden() {
return !this._isMatch;
return !this.isMatch;
}
}
@ -125,7 +125,7 @@ export class HideWhen extends DisplayWhen {
* @private
*/
get hidden() {
return this._isMatch;
return this.isMatch;
}
}