File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -315,14 +315,14 @@ function renderProgress(index, total) {
315
315
progressBar . value = progress ;
316
316
progressPerc . setAttribute ( "data-l10n-args" , JSON . stringify ( { progress } ) ) ;
317
317
}
318
-
318
+ /*
319
319
window.addEventListener(
320
320
"keydown",
321
321
function (event) {
322
322
// Intercept Cmd/Ctrl + P in all browsers.
323
323
// Also intercept Cmd/Ctrl + Shift + P in Chrome and Opera
324
324
if (
325
- event . keyCode === /* P= */ 80 &&
325
+ event.keyCode === 80 && // P=
326
326
(event.ctrlKey || event.metaKey) &&
327
327
!event.altKey &&
328
328
(!event.shiftKey || window.chrome || window.opera)
@@ -335,7 +335,7 @@ window.addEventListener(
335
335
},
336
336
true
337
337
);
338
-
338
+ */
339
339
if ( "onbeforeprint" in window ) {
340
340
// Do not propagate before/afterprint events when they are not triggered
341
341
// from within this polyfill. (FF / Chrome 63+).
You can’t perform that action at this time.
0 commit comments