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 * 'category-setting-exceptions' is the polymer element for showing a certain | |
| 8 * category of exceptions under Site Settings. | |
| 9 */ | |
| 10 Polymer({ | |
| 11 is: 'category-setting-exceptions', | |
| 12 | |
| 13 properties: { | |
| 14 /** | |
| 15 * The site that is passed down to the site list. | |
| 16 * @type {SiteException} | |
| 17 */ | |
| 18 selectedSite: { | |
|
tommycli
2016/12/15 21:36:38
As stated before this is probably not needed anymo
dschuyler
2016/12/16 20:39:45
Done.
| |
| 19 type: Object, | |
| 20 notify: true, | |
| 21 }, | |
| 22 }, | |
| 23 | |
| 24 ready: function() { | |
| 25 this.PermissionValues = settings.PermissionValues; | |
|
tommycli
2016/12/15 21:36:38
This can probably be in created (in case it's need
dschuyler
2016/12/16 20:39:45
That doesn't work. I tried it before putting this
| |
| 26 }, | |
| 27 }); | |
| OLD | NEW |