| OLD | NEW |
| (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 }); | |
| OLD | NEW |