Merge branch 'stonelasley-issue/6103-change-content-of-loading-component'

This commit is contained in:
Brandy Carney
2016-08-17 13:48:33 -04:00
2 changed files with 10 additions and 2 deletions

View File

@ -36,6 +36,14 @@ export class Loading extends ViewController {
return this._nav && this._nav.config.get(key);
}
/**
* @param {string} content loading message content
*/
setContent(content: string) {
this.data.content = content;
}
/**
* Present the loading instance.
*

View File

@ -79,9 +79,9 @@ export class ViewController {
didUnload: EventEmitter<any>;
/**
* @private
* @protected
*/
data: any;
protected data: any;
/**
* @private