Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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 | |
| 7 * 'settings-row' shows a row of controls for a setting. This is used as | |
| 8 * a simple container for UI group that is smaller than a page or section, | |
| 9 * but larger than a single button or slider. The row may contain a <left>, | |
| 10 * a <right> or both. Elements withing left or right will be pushed to the | |
| 11 * respective ends of the row. | |
| 12 * | |
| 13 * Examples: | |
| 14 * | |
| 15 * <settings-row> | |
| 16 * <left> | |
|
Dan Beam
2015/10/20 18:31:51
custom tags should have-dashes
dschuyler
2015/10/20 20:46:59
Ah, I knew about dashes for polymer
module names
| |
| 17 * Press the button | |
| 18 * </left> | |
| 19 * <right> | |
| 20 * <paper-button>THE BUTTON</paper-button> | |
| 21 * </right> | |
| 22 * </settings-row> | |
| 23 * | |
| 24 * @group Chrome Settings Elements | |
| 25 * @element settings-row | |
| 26 */ | |
| 27 Polymer({ | |
| 28 is: 'settings-row', | |
| 29 }); | |
| OLD | NEW |