Bug 1802353 - Expose the pref 'apz.allow_zooming' in pdf.js r=pdfjs-reviewers,marco

This way it'll be possible to enable/disable pinch-to-zoom feature in pdf.js.

Differential Revision: https://phabricator.services.mozilla.com/D163072
This commit is contained in:
Calixte 2022-12-01 09:09:18 +00:00
Родитель 44008b5206
Коммит ea44d8c7fb
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -377,6 +377,10 @@ class ChromeActions {
return !!prefBrowser && prefGfx;
}
supportsPinchToZoom() {
return getBoolPref("apz.allow_zooming", true);
}
supportedMouseWheelZoomModifierKeys() {
return {
ctrlKey: getIntPref("mousewheel.with_control.action", 3) === 3,