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 * 'cr-settings-menu' shows a menu with the given pages. |
| 8 * |
| 9 * Example: |
| 10 * |
| 11 * <cr-settings-menu pages="{{pages}}" selectedIndex="{{index}}"> |
| 12 * </cr-settings-menu> |
| 13 * |
| 14 * @group Chrome Settings Elements |
| 15 * @element cr-settings-menu |
| 16 */ |
| 17 Polymer('cr-settings-menu', { |
| 18 publish: { |
| 19 /** |
| 20 * Pages to show menu items for. |
| 21 * |
| 22 * @attribute pages |
| 23 * @type Array<!CrSettingsPage> |
| 24 * @default [] |
| 25 */ |
| 26 pages: [], |
| 27 |
| 28 /** |
| 29 * Index of the currently selected page. |
| 30 * |
| 31 * @attribute selectedIndex |
| 32 * @type number |
| 33 * default 0 |
| 34 */ |
| 35 selectedIndex: 0, |
| 36 }, |
| 37 |
| 38 pageSelected: function(e, detail) { |
| 39 if (!detail.isSelected) |
| 40 return; |
| 41 |
| 42 // Issue 33: selectedModel is not updated yet, so grab the model from the |
| 43 // selectedItem's templateInstance object. See http://goo.gl/KpEYGP. |
| 44 this.fire('cr-settings-page-select', |
| 45 this.$.menu.selectedItem.templateInstance.model); |
| 46 }, |
| 47 }); |
OLD | NEW |