Roll src/third_party/WebKit 3529d49:06e8485 (svn 202554:202555)
[chromium-blink-merge.git] / remoting / webapp / base / js / credits_js.js
blobf3ebd83e0cf2d2d85a35f641fd7f61b60b1855b4
1 // Copyright 2015 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.
5 (function() {
7 'use strict';
9 /** @param {Event} event */
10 function onClick(event) {
11   var element = /** @type {HTMLElement} */ (event.target);
12   if (element.classList.contains('toggle-licence')) {
13     element.parentElement.parentElement.classList.toggle('selected');
14     document.body.classList.toggle('show-only-selected');
15   }
18 document.addEventListener('click', onClick, false);
20 })();