Browse Source

Merge pull request #8466 from Snuffleupagus/app-DefaultExternalServices-createL10n

Add a stub `createL10n` to `DefaultExternalServices` in app.js
Tim van der Meij 8 years ago committed by GitHub
parent
commit
bb7e85c5ea
  1. 5
      web/app.js

5
web/app.js

@ -75,13 +75,16 @@ var DefaultExternalServices = { @@ -75,13 +75,16 @@ var DefaultExternalServices = {
createPreferences() {
throw new Error('Not implemented: createPreferences');
},
createL10n() {
throw new Error('Not implemented: createL10n');
},
supportsIntegratedFind: false,
supportsDocumentFonts: true,
supportsDocumentColors: true,
supportedMouseWheelZoomModifierKeys: {
ctrlKey: true,
metaKey: true,
}
},
};
var PDFViewerApplication = {

Loading…
Cancel
Save