docs(spinner): make methods private to dgeni

This commit is contained in:
Mike Hartington
2016-04-29 11:51:31 -04:00
parent feeb7bc996
commit 41174f6b27

View File

@ -155,11 +155,17 @@ export class Spinner {
constructor(private _config: Config) {}
/**
* @private
*/
ngOnInit() {
this._init = true;
this.load();
}
/**
* @private
*/
load() {
if (this._init) {
this._l = [];