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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe_welcome.js

Issue 1965913005: ChromeOS: Implement minumal material design OOBE. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix presubmit. Created 4 years, 7 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 Polymer({
6 is: 'oobe-welcome-md',
7
8 properties: {
9 disabled: {
10 type: Boolean,
11 value: false,
12 },
13 currentLanguage: {
14 type: String,
15 value: 'English (US)',
16 },
17 },
18
19 focus: function() {
20 this.$.welcomeNextButton.focus();
21 },
22
23 onAnimationFinish_: function() {
24 this.focus();
25 },
26
27 onWelcomeNextButtonClicked_: function() {
28 $('oobe-connect').hidden = false;
29 $('oobe-welcome-md').hidden = true;
30 }
31 });
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe_welcome.html ('k') | chrome/browser/ui/webui/chromeos/login/oobe_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698