mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 13:01:01 +08:00
docs(spinner): make methods private to dgeni
This commit is contained in:
@ -155,11 +155,17 @@ export class Spinner {
|
|||||||
|
|
||||||
constructor(private _config: Config) {}
|
constructor(private _config: Config) {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
this._init = true;
|
this._init = true;
|
||||||
this.load();
|
this.load();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
load() {
|
load() {
|
||||||
if (this._init) {
|
if (this._init) {
|
||||||
this._l = [];
|
this._l = [];
|
||||||
|
Reference in New Issue
Block a user