We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0579bba commit c750847Copy full SHA for c750847
src/components/loading/loading.ts
@@ -36,6 +36,14 @@ export class Loading extends ViewController {
36
return this._nav && this._nav.config.get(key);
37
}
38
39
+ /**
40
+ * @param {string} content loading message content
41
+ */
42
+ setContent(content: string) {
43
+ this.data.content = content;
44
+ }
45
+
46
47
/**
48
* Present the loading instance.
49
*
src/components/nav/view-controller.ts
@@ -79,9 +79,9 @@ export class ViewController {
79
didUnload: EventEmitter<any>;
80
81
82
- * @private
+ * @protected
83
*/
84
- data: any;
+ protected data: any;
85
86
87
* @private
0 commit comments