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

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

Issue 1215543002: Remove Polymer 0.5. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix unit test Created 5 years, 6 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_button/cr_button.js
diff --git a/ui/webui/resources/cr_elements/cr_button/cr_button.js b/ui/webui/resources/cr_elements/cr_button/cr_button.js
deleted file mode 100644
index a8cc8aea7f0a600fbd2203df7dcb4c3c3204a827..0000000000000000000000000000000000000000
--- a/ui/webui/resources/cr_elements/cr_button/cr_button.js
+++ /dev/null
@@ -1,40 +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>
- * <core-icon icon="favorite"></core-icon> Custom button
- * </cr-button>
- *
- * @group Chrome Elements
- * @element cr-button
- */
-Polymer('cr-button', {
- publish: {
- /**
- * If true, the button will be styled with a shadow.
- *
- * @attribute raised
- * @type boolean
- * @default false
- */
- raised: {value: false, reflect: true},
-
- /**
- * If true, the button will be disabled and greyed out.
- *
- * @attribute disabled
- * @type boolean
- * @default false
- */
- disabled: {value: false, reflect: true},
- },
-});
« no previous file with comments | « ui/webui/resources/cr_elements/cr_button/cr_button.html ('k') | ui/webui/resources/cr_elements/cr_button/demo.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698