Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/universal-app/kitchen-sink/kitchen-sink.html
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,26 @@ <h2>Toolbar</h2>
<md-toolbar-row>Toolbar</md-toolbar-row>
</md-toolbar>

<h2>Sort</h2>

<table mdSort>
<tr>
<th md-sort-header="name">Name</th>
<th md-sort-header="calories">Calories</th>
<th md-sort-header="fat">Fat</th>
<th md-sort-header="carbs">Carbs</th>
<th md-sort-header="protein">Protein</th>
</tr>

<tr>
<td>Cupcake</td>
<td>305</td>
<td>4</td>
<td>67</td>
<td>4</td>
</tr>
</table>

<h2>Tooltip</h2>

<button mdTooltip="Action!">Go</button>
Expand Down
2 changes: 2 additions & 0 deletions src/universal-app/kitchen-sink/kitchen-sink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import {
MdSliderModule,
MdSlideToggleModule,
MdSnackBarModule,
MdSortModule,
MdTabsModule,
MdToolbarModule,
MdTooltipModule,
Expand Down Expand Up @@ -91,6 +92,7 @@ export class KitchenSink {
MdToolbarModule,
MdTooltipModule,
MdExpansionModule,
MdSortModule,

// CDK Modules
CdkTableModule
Expand Down