Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
demo: Fixed invalid fab button link
Browse files Browse the repository at this point in the history
Removed ng-href attributes

Closes #2374.
  • Loading branch information
Eun authored and ThomasBurleson committed Apr 19, 2015
1 parent 8410c0d commit aff50d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/button/demoBasicUsage/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
</section>

<section layout="row" layout-sm="column" layout-align="center center">
<md-button class="md-fab" aria-label="Eat cake" ng-href="#">
<md-button class="md-fab" aria-label="Eat cake">
<md-icon md-svg-src="img/icons/cake.svg"></md-icon>
</md-button>

Expand All @@ -35,7 +35,7 @@
<md-icon md-svg-src="img/icons/ic_people_24px.svg"></md-icon>
</md-button>

<md-button class="md-fab md-mini" aria-label="Eat cake" ng-href="#">
<md-button class="md-fab md-mini" aria-label="Eat cake">
<md-icon md-svg-src="img/icons/cake.svg"></md-icon>
</md-button>

Expand Down

1 comment on commit aff50d5

@marcysutton
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These were there for a reason! They show how to create link FABs.

Please sign in to comment.