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

Side by Side Diff: chrome/browser/resources/settings/settings_page/settings_row.js

Issue 1409373007: [MD settings] adding settings-row class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review nit Created 5 years, 2 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 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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698