From b66bb5bd1cb3afef8c92aa3988e4527db5646809 Mon Sep 17 00:00:00 2001 From: Marcos Moura Date: Thu, 29 Dec 2016 02:53:22 -0200 Subject: [PATCH] fix indentation --- src/components/mdSnackbar/mdSnackbar.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/mdSnackbar/mdSnackbar.vue b/src/components/mdSnackbar/mdSnackbar.vue index 07fd52d..a1479ee 100644 --- a/src/components/mdSnackbar/mdSnackbar.vue +++ b/src/components/mdSnackbar/mdSnackbar.vue @@ -70,11 +70,11 @@ removeElement() { if (this.rootElement.contains(this.snackbarElement)) { const activeRipple = this.snackbarElement.querySelector('.md-ripple.md-active'); - + if (activeRipple) { - activeRipple.classList.remove('md-active'); + activeRipple.classList.remove('md-active'); } - + this.rootElement.removeChild(this.snackbarElement); } },