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

Unified Diff: ui/webui/resources/cr_elements/v1_0/cr_button/cr_button.js

Issue 1162963002: Revert "Rename polymer and cr_elements v0_8 to v1_0" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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/v1_0/cr_button/cr_button.js
diff --git a/ui/webui/resources/cr_elements/v1_0/cr_button/cr_button.js b/ui/webui/resources/cr_elements/v1_0/cr_button/cr_button.js
deleted file mode 100644
index e4302949a27641fef54afdfb0f16b3e0adb60ff9..0000000000000000000000000000000000000000
--- a/ui/webui/resources/cr_elements/v1_0/cr_button/cr_button.js
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-/**
- * @fileoverview
- * 'cr-button' is a chrome-specific wrapper around paper-button.
- *
- * Example:
- *
- * <cr-button>Press Here</cr-button>
- * <cr-button raised>Raised Button</cr-button>
- * <cr-button>
- * <iron-icon icon="favorite"></iron-icon> Custom button
- * </cr-button>
- *
- * @group Chrome Elements
- * @element cr-button
- */
-Polymer({
- is: 'cr-button',
-
- properties: {
- /**
- * If true, the button will be styled with a shadow.
- */
- raised: {
- type: Boolean,
- value: false,
- reflectToAttribute: true
- },
-
- /**
- * If true, the button will be disabled and greyed out.
- */
- disabled: {
- type: Boolean,
- value: false,
- reflectToAttribute: true
- },
- },
-});
« no previous file with comments | « ui/webui/resources/cr_elements/v1_0/cr_button/cr_button.html ('k') | ui/webui/resources/cr_elements/v1_0/cr_button/demo.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698