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

Unified 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: Rebase 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 side-by-side diff with in-line comments
Download patch
Index: ui/webui/resources/cr_elements/cr_expand_button/cr_expand_button.html
diff --git a/ui/webui/resources/cr_elements/cr_expand_button/cr_expand_button.html b/ui/webui/resources/cr_elements/cr_expand_button/cr_expand_button.html
new file mode 100644
index 0000000000000000000000000000000000000000..3aa61ab6ec7872971250fb1c7b002130f75f432b
--- /dev/null
+++ b/ui/webui/resources/cr_elements/cr_expand_button/cr_expand_button.html
@@ -0,0 +1,12 @@
+<link rel="import" href="chrome://resources/polymer/polymer/polymer.html">
+<link rel="import" href="chrome://resources/polymer/core-icon/core-icon.html">
+<link rel="import" href="chrome://resources/polymer/paper-icon-button/paper-icon-button.html">
+
+<polymer-element name="cr-expand-button">
+ <template>
+ <paper-icon-button toggle active="{{expanded}}" disabled="{{disabled}}"
+ icon="{{expanded ? 'expand-less' : 'expand-more'}}">
+ </paper-icon-button>
+ </template>
+ <script src="cr_expand_button.js"></script>
+</polymer-element>
« no previous file with comments | « chromeos/dbus/fake_shill_manager_client.cc ('k') | ui/webui/resources/cr_elements/cr_expand_button/cr_expand_button.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698