| Index: chrome/browser/resources/welcome/win10/toggle-screenshot.js
|
| diff --git a/chrome/browser/resources/welcome/win10/toggle-screenshot.js b/chrome/browser/resources/welcome/win10/toggle-screenshot.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..53f935152e6703dade7a6c0d6ac372d0eccf3a4b
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/welcome/win10/toggle-screenshot.js
|
| @@ -0,0 +1,29 @@
|
| +// 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('togglescreenshot', function() {
|
| + 'use strict';
|
| +
|
| + function toggleScreenshots(screenshotImages) {
|
| + screenshotImages.forEach(function(screenshot) {
|
| + screenshot.classList.toggle('screenshot-image--visible');
|
| + });
|
| + }
|
| +
|
| + function initialize() {
|
| + var screenshotImages = document.querySelectorAll('.screenshot-image');
|
| + sections.forEach(function(section) {
|
| + var sectionHeading = section.querySelector('.section-heading');
|
| + sectionHeading.addEventListener('click', function() {
|
| + toggleScreenshots(screenshotImages);
|
| + });
|
| + });
|
| + }
|
| +
|
| + return {
|
| + initialize: initialize
|
| + };
|
| +});
|
| +
|
| +document.addEventListener('DOMContentLoaded', togglescreenshot.initialize);
|
|
|