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.
6 * @fileoverview Polymer element for UI wrapping a list of cr- elements.
15 observer: 'checkboxCheckedChanged_'
21 observer: 'collapseOpenedChanged_'
26 value: function() { return ["", "input1", "input2", "", "input4"]; },
27 observer: 'inputValuesChanged_'
32 value: 'CheckboxLabel',
41 checkboxCheckedChanged_: function() {
42 console.log('checkboxCheckedChanged=' + this.checkboxChecked);
45 collapseOpenedChanged_: function() {
46 console.log('collapseOpened=' + this.collapseOpened);
49 inputValuesChanged_: function() {
50 console.log('inputValues=' + this.inputValues);