chore(tslint): disable 'no-floating-promises'

This commit is contained in:
Manu Mtz.-Almeida
2018-09-14 00:50:44 +02:00
parent 127da1ac79
commit 6e5c035b39
26 changed files with 18 additions and 45 deletions

View File

@ -223,10 +223,9 @@ export class Menu implements MenuI {
if (shouldClose) {
ev.preventDefault();
ev.stopPropagation();
return this.close();
this.close();
}
}
return Promise.resolve(false);
}
@Method()