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 |
- }, |
- }, |
-}); |