remove old MDL wrapper directives (#2095)

- remove mdl-button directive
- remove mdl-tooltip directive
This commit is contained in:
Denys Vuika
2017-07-18 10:34:44 +01:00
committed by Eugenio Romano
parent 914e2af98d
commit 34c89bd2ba
7 changed files with 12 additions and 83 deletions

View File

@@ -16,12 +16,12 @@
<span class="mdl-paging__count">{{summary}}</span>
<button (click)="showPrevPage()"
[disabled]="!prevPageAvail()"
alfresco-mdl-button class="mdl-button--icon mdl-paging__prev">
<i class="material-icons">keyboard_arrow_left</i>
md-icon-button class="mdl-button--icon mdl-paging__prev">
<md-icon>keyboard_arrow_left</md-icon>
</button>
<button (click)="showNextPage()"
[disabled]="!nextPageAvail()"
alfresco-mdl-button class="mdl-button--icon mdl-paging__next">
<i class="material-icons">keyboard_arrow_right</i>
md-icon-button class="mdl-button--icon mdl-paging__next">
<md-icon>keyboard_arrow_right</md-icon>
</button>
</div>