chore(refresher): update config variable names

This commit is contained in:
Adam Bradley
2016-02-29 13:51:42 -06:00
parent 20fd2c3b8b
commit fd5c4092bf

View File

@ -60,10 +60,10 @@ export class RefresherContent {
*/
ngOnInit() {
if (!this.pullingIcon) {
this.pullingIcon = this._config.get('pullingIcon', 'arrow-down');
this.pullingIcon = this._config.get('refresherPullingIcon', 'arrow-down');
}
if (!this.refreshingSpinner) {
this.refreshingSpinner = this._config.get('refreshingSpinner', 'ios');
this.refreshingSpinner = this._config.get('refresherRefreshingSpinner', this._config.get('spinner', 'ios'));
}
}
}