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

Side by Side Diff: ui/webui/resources/cr_elements/v0_8/demo_element.js

Issue 1155683008: Rename polymer and cr_elements v0_8 to v1_0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v1
Patch Set: fix a merge mistake 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6 * @fileoverview Polymer element for UI wrapping a list of cr- elements.
7 */
8 Polymer({
9 is: 'cr-demo-element',
10
11 properties: {
12 checkboxChecked: {
13 type: Boolean,
14 value: true,
15 observer: 'checkboxCheckedChanged_'
16 },
17
18 collapseOpened: {
19 type: Boolean,
20 value: true,
21 observer: 'collapseOpenedChanged_'
22 },
23
24 inputValue: {
25 type: String,
26 value: '',
27 observer: 'inputValueChanged_'
28 },
29
30 label: {
31 type: String,
32 value: 'label!',
33 },
34
35 subLabel: {
36 type: String,
37 value: 'sub-label!',
38 },
39 },
40
41 checkboxCheckedChanged_: function() {
42 console.log('checkboxCheckedChanged=' + this.checkboxChecked);
43 },
44
45 collapseOpenedChanged_: function() {
46 console.log('collapseOpened=' + this.collapseOpened);
47 },
48
49 inputValueChanged_: function() {
50 console.log('inputValue=' + this.inputValue);
51 }
52 });
OLDNEW
« no previous file with comments | « ui/webui/resources/cr_elements/v0_8/demo_element.html ('k') | ui/webui/resources/cr_elements/v0_8/demo_page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698