Skip to content
This repository was archived by the owner on Dec 19, 2021. It is now read-only.

Commit c447ac9

Browse files
committed
fix lint
1 parent bb33ea5 commit c447ac9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/loading-indicator.android.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,22 +61,22 @@ export class LoadingIndicator {
6161
let i = 0;
6262
try {
6363
this._loadersInstances.forEach(loader => {
64-
if(loader) {
65-
if (this._isShowing(loader)) {
66-
loader.dismiss();
67-
}
64+
if (loader) {
65+
if (this._isShowing(loader)) {
66+
loader.dismiss();
67+
}
6868
}
6969
this._loadersInstances.splice(i, 1);
7070
i++;
7171
});
7272

7373
this._popOver = null;
7474
this._currentProgressColor = null;
75-
} catch(e) {
76-
console.log(e)
75+
} catch (e) {
76+
console.log(e);
7777
}
7878
}
79-
79+
8080
private _isShowing(loader: android.widget.PopupWindow) {
8181
return loader.isShowing();
8282
}

0 commit comments

Comments
 (0)