Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: chrome/browser/resources/md_user_manager/supervised_user_learn_more.js

Issue 1842703004: Revert "MD user manager (learn more page, user manager tutorial)" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698