OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 /** | 5 /** |
6 * @fileoverview 'control-bar' is the horizontal bar at the bottom of the user | 6 * @fileoverview 'supervised-user-learn-more' is a page that contains |
7 * manager screen. | 7 * information about what a supervised user is, what happens when a supervised |
8 * user is created, and a link to the help center for more information. | |
8 * | 9 * |
9 * @element control-bar | 10 * @element supervised-user-learn-more |
Dan Beam
2016/03/15 02:24:55
fyi: we've dropped all the @element tags from sett
Moe
2016/03/22 23:34:56
Done.
| |
10 */ | 11 */ |
11 Polymer({ | 12 Polymer({ |
12 is: 'control-bar', | 13 is: 'supervised-user-learn-more', |
13 | |
14 properties: { | |
15 /** | |
16 * True if 'Browse as Guest' button is displayed. | |
17 * @type {boolean} | |
18 */ | |
19 showGuest: { | |
20 type: Boolean, | |
21 value: false | |
22 }, | |
23 | |
24 /** | |
25 * True if 'Add Person' button is displayed. | |
26 * @type {boolean} | |
27 */ | |
28 showAddPerson: { | |
29 type: Boolean, | |
30 value: false | |
31 } | |
32 }, | |
33 | 14 |
34 /** | 15 /** |
35 * Handler for 'Browse as Guest' button click event. | 16 * Handler for the 'Done' button click event. |
36 * @param {!Event} event | 17 * @param {!Event} event |
37 * @private | 18 * @private |
38 */ | 19 */ |
39 handleGuestClick_: function(event) { | 20 onDoneTap_: function(event) { |
40 signin.ProfileApi.launchGuestUser(); | |
41 }, | |
42 | |
43 /** | |
44 * Handler for 'Add Person' button click event. | |
45 * @param {!Event} event | |
46 * @private | |
47 */ | |
48 handleAddUserClick_: function(event) { | |
49 // Event is caught by user-manager-pages. | 21 // Event is caught by user-manager-pages. |
50 this.fire('change-page', {page: 'create-user-page'}); | 22 this.fire('change-page', {page: 'create-user-page'}); |
51 } | 23 } |
52 }); | 24 }); |
OLD | NEW |