| Index: chrome/browser/resources/welcome/win10/inline/combined.js
|
| diff --git a/chrome/browser/resources/welcome/win10/inline/combined.js b/chrome/browser/resources/welcome/win10/inline/combined.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..761e2c27df50b991919463443346acfa8158932b
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/welcome/win10/inline/combined.js
|
| @@ -0,0 +1,53 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +cr.define('welcome', function() {
|
| + 'use strict';
|
| +
|
| + function injectLocalizedStrings() {
|
| + $('section-steps--click-edge').innerHTML =
|
| + loadTimeData.getString('clickEdgeText');
|
| + $('section-steps--select-chrome').innerHTML =
|
| + loadTimeData.getString('clickSelectChrome');
|
| + $('section-steps--right-click').innerHTML =
|
| + loadTimeData.getString('rightClickText');
|
| + $('section-steps--pin-taskbar').innerHTML =
|
| + loadTimeData.getString('pinInstructionText');
|
| + }
|
| +
|
| + function toggleSections(sections) {
|
| + sections.forEach(function(section) {
|
| + section.classList.toggle('section--expanded');
|
| + });
|
| + }
|
| +
|
| + function onSetDefaultBrowser(e) {
|
| + chrome.send('handleSetDefaultBrowser');
|
| + }
|
| +
|
| + function onContinue(e) {
|
| + chrome.send('handleContinue');
|
| + }
|
| +
|
| + function initialize() {
|
| + injectLocalizedStrings();
|
| +
|
| + var sections = document.querySelectorAll('.section');
|
| + sections.forEach(function(section) {
|
| + var sectionHeading = section.querySelector('.section-heading');
|
| + sectionHeading.addEventListener('click', function() {
|
| + toggleSections(sections);
|
| + });
|
| + });
|
| +
|
| + $('set-default-button').addEventListener('click', onSetDefaultBrowser);
|
| + $('continue-button').addEventListener('click', onContinue);
|
| + }
|
| +
|
| + return {
|
| + initialize: initialize
|
| + };
|
| +});
|
| +
|
| +document.addEventListener('DOMContentLoaded', welcome.initialize);
|
|
|