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 | |
|
Sam McNally
2015/09/08 08:25:47
'use strict';
calamity
2015/09/10 06:57:32
Done.
| |
| 5 Polymer({ | |
| 6 is: 'engagement-table', | |
| 7 properties: { | |
| 8 /** | |
| 9 * A list of engagement info objects. | |
| 10 * @type !Array<!SiteEngagementInfo> | |
| 11 */ | |
| 12 engagementInfo: { | |
| 13 type: Array, | |
| 14 value: function() { return []; } | |
|
Sam McNally
2015/09/08 08:25:47
Try value: () => []
calamity
2015/09/10 06:57:32
Done.
| |
| 15 }, | |
| 16 }, | |
| 17 | |
| 18 }); | |
| OLD | NEW |