blob: b350e56c0010eeb77b9aae6dbf4d03b7b52905e8 [file] [log] [blame]
// Copyright (c) 2011 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.
/* eslint-disable no-restricted-properties */
function $(id) {
return document.getElementById(id);
}
/* eslint-enable no-restricted-properties */
document.addEventListener('DOMContentLoaded', function() {
if (cr.isChromeOS) {
var keyboardUtils = document.createElement('script');
keyboardUtils.src = 'chrome://credits/keyboard_utils.js';
document.body.appendChild(keyboardUtils);
}
$('print-link').hidden = false;
$('print-link').onclick = function() {
window.print();
return false;
};
document.addEventListener('keypress', function(e) {
// Make the license show/hide toggle when the Enter is pressed.
if (e.keyCode == 0x0d && e.target.tagName == 'LABEL') {
e.target.previousElementSibling.click();
}
});
});