Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Side by Side Diff: ui/webui/resources/cr_elements/cr_expand_button/cr_expand_button.html

Issue 1100993002: Implement md-settings network lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Request network states on expand wifi Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <link rel="import" href="chrome://resources/polymer/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/core-icon/core-icon.html">
3 <link rel="import" href="chrome://resources/polymer/paper-button/paper-button.ht ml">
4
5 <polymer-element name="cr-expand-button">
6 <template>
7 <paper-button toggle active="{{expanded}}" disabled="{{disabled}}">
8 <core-icon icon="{{expanded ? 'expand-less' : 'expand-more'}}">
9 </core-icon>
10 </paper-button>
11 </template>
12 <script src="cr_expand_button.js"></script>
13 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698