From 23ba6d38a4d0762b3fd4eef83c3bb97848d75e4b Mon Sep 17 00:00:00 2001
From: Thomas Lenz <Thomas.Lenz@mni.thm.de>
Date: Mon, 12 Mar 2018 11:53:04 +0100
Subject: [PATCH] Remove unnecessary tooltips

---
 src/app/creator-room/creator-room.component.html | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/app/creator-room/creator-room.component.html b/src/app/creator-room/creator-room.component.html
index 6752ed17b..704641eb1 100644
--- a/src/app/creator-room/creator-room.component.html
+++ b/src/app/creator-room/creator-room.component.html
@@ -24,10 +24,10 @@
                 routerLink="/creator/room/{{room.id}}/comments">
           Comments
         </button>
-        <button mat-button color="warn" matTooltip="Enables deletion dialog" (click)="showDeletionDialog()">
+        <button mat-button color="warn" (click)="showDeletionDialog()">
           Delete room
         </button>
-        <button mat-button color="primary" matTooltip="Go back to last page" (click)="goBack()">
+        <button mat-button color="primary" (click)="goBack()">
           Go back
         </button>
       </mat-card-actions>
@@ -36,10 +36,10 @@
       <mat-card-header><h3>Do you really want to delete this room?<br>This action can not be undone.</h3>
       </mat-card-header>
       <mat-card-content>
-        <button mat-raised-button color="warn" matTooltip="Delete selected room" (click)="deleteRoom(room)">
+        <button mat-raised-button color="warn" (click)="deleteRoom(room)">
           Delete room
         </button>
-        <button mat-raised-button color="primary" matTooltip="Leave delete dialog" (click)="hideDeletionDialog()">
+        <button mat-raised-button color="primary" (click)="hideDeletionDialog()">
           Leave
         </button>
       </mat-card-content>
-- 
GitLab