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 /** |
| 7 * @fileoverview |
| 8 * 'supervised-user-learn-more' is a page that contains information about |
| 9 * what a supervised user is, what happens when a supervised user is created, |
| 10 * and a link to the help center for more information. |
| 11 * |
| 12 * @element supervised-user-learn-more |
| 13 */ |
| 14 Polymer({ |
| 15 is: 'supervised-user-learn-more', |
| 16 |
| 17 /** |
| 18 * Handler for the |Done| button click event. |
| 19 * @param {!Event} event |
| 20 * @private |
| 21 */ |
| 22 handleDone_: function(event) { |
| 23 // Event is caught by user-manager-pages. |
| 24 this.fire('change-page', {page: 'create-user-page'}); |
| 25 } |
| 26 }); |
OLD | NEW |