OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 /** |
| 6 * @fileoverview 'supervised-user-learn-more' is a page that contains |
| 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. |
| 9 */ |
| 10 Polymer({ |
| 11 is: 'supervised-user-learn-more', |
| 12 |
| 13 /** |
| 14 * Handler for the 'Done' button click event. |
| 15 * @param {!Event} event |
| 16 * @private |
| 17 */ |
| 18 onDoneTap_: function(event) { |
| 19 // Event is caught by user-manager-pages. |
| 20 this.fire('change-page', {page: 'create-user-page'}); |
| 21 } |
| 22 }); |
OLD | NEW |