Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions src/demo-app/button/button-demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
</section>

<section>
<a href="http://www.google.com" md-button color="primary">link</a>
<a href="http://www.google.com" md-raised-button>link</a>
<a href="http://www.google.com" md-button color="primary">Google</a>
Copy link
Member

Choose a reason for hiding this comment

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

The text should be "SEARCH"

<a href="http://www.google.com" md-raised-button>Google</a>
<a href="http://www.google.com" md-fab>
<md-icon class="md-24">check</md-icon>
</a>
Expand Down Expand Up @@ -81,13 +81,13 @@
</section>
<section>
Link
<a href="http://www.google.com" md-button color="primary">link</a>
<a href="http://www.google.com" md-button color="primary">Google</a>
Button
<button md-button>flat</button>
</section>
<section>
Link
<a href="http://www.google.com" md-raised-button color="primary">link</a>
<a href="http://www.google.com" md-raised-button color="primary">Google</a>
Button
<button md-raised-button>button</button>
</section>
Expand Down
2 changes: 1 addition & 1 deletion src/demo-app/index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!doctype html>
{{!-- This file is an handlebar file that gets filled at build time. --}}
<html>
<html lang="en">
Copy link
Member

Choose a reason for hiding this comment

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

You have to apply this to the e2e-app as well.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Will update this

Copy link
Member

Choose a reason for hiding this comment

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

@robertmesserle is doing this in #650

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
Expand Down