removed the timeout 400 of the snackbar as it shouldnt be hardcoded

This commit is contained in:
Carlos Jimenez 2018-01-02 14:51:39 +01:00
parent 67d99e788e
commit 50dd055c99
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ export default class App {
this.$rootScope = $rootScope; this.$rootScope = $rootScope;
} }
show(message) { show(message) {
if (this.snackbar) this.snackbar.show({message: message, timeout: 400}); if (this.snackbar) this.snackbar.show({message: message});
} }
showMessage(message) { showMessage(message) {
this.show(message); this.show(message);