pdfjs-dist 2.0.550 → 2.3.200

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pdfjs-dist might be problematic. Click here for more details.

Files changed (168) hide show
  1. package/CODE_OF_CONDUCT.md +15 -0
  2. package/bower.json +1 -1
  3. package/build/pdf.js +21618 -14369
  4. package/build/pdf.js.map +1 -1
  5. package/build/pdf.min.js +1 -1
  6. package/build/pdf.worker.js +22758 -11399
  7. package/build/pdf.worker.js.map +1 -1
  8. package/build/pdf.worker.min.js +1 -1
  9. package/image_decoders/pdf.image_decoders.js +11500 -0
  10. package/image_decoders/pdf.image_decoders.js.map +1 -0
  11. package/image_decoders/pdf.image_decoders.min.js +1 -0
  12. package/lib/core/annotation.js +767 -258
  13. package/lib/core/arithmetic_decoder.js +275 -245
  14. package/lib/core/bidi.js +65 -6
  15. package/lib/core/ccitt.js +173 -18
  16. package/lib/core/ccitt_stream.js +15 -6
  17. package/lib/core/cff_parser.js +433 -61
  18. package/lib/core/charsets.js +5 -4
  19. package/lib/core/chunked_stream.js +428 -157
  20. package/lib/core/cmap.js +326 -87
  21. package/lib/core/colorspace.js +874 -594
  22. package/lib/core/core_utils.js +173 -0
  23. package/lib/core/crypto.js +290 -45
  24. package/lib/core/document.js +575 -272
  25. package/lib/core/encodings.js +19 -10
  26. package/lib/core/evaluator.js +1032 -351
  27. package/lib/core/font_renderer.js +331 -97
  28. package/lib/core/fonts.js +813 -196
  29. package/lib/core/function.js +253 -27
  30. package/lib/core/glyphlist.js +5 -3
  31. package/lib/core/image.js +169 -62
  32. package/lib/core/image_utils.js +111 -0
  33. package/lib/core/jbig2.js +502 -72
  34. package/lib/core/jbig2_stream.js +19 -8
  35. package/lib/core/jpeg_stream.js +38 -13
  36. package/lib/core/jpg.js +293 -52
  37. package/lib/core/jpx.js +419 -12
  38. package/lib/core/jpx_stream.js +18 -6
  39. package/lib/core/metrics.js +15 -15
  40. package/lib/core/murmurhash3.js +56 -34
  41. package/lib/core/obj.js +1368 -500
  42. package/lib/core/operator_list.js +159 -43
  43. package/lib/core/parser.js +544 -199
  44. package/lib/core/pattern.js +170 -21
  45. package/lib/core/pdf_manager.js +324 -134
  46. package/lib/core/primitives.js +169 -61
  47. package/lib/core/ps_parser.js +134 -45
  48. package/lib/core/standard_fonts.js +17 -17
  49. package/lib/core/stream.js +327 -34
  50. package/lib/core/type1_parser.js +148 -8
  51. package/lib/core/unicode.js +32 -5
  52. package/lib/core/worker.js +215 -229
  53. package/lib/core/worker_stream.js +277 -0
  54. package/lib/display/annotation_layer.js +618 -192
  55. package/lib/display/api.js +1798 -882
  56. package/lib/display/api_compatibility.js +5 -10
  57. package/lib/display/canvas.js +366 -45
  58. package/lib/display/content_disposition.js +71 -24
  59. package/lib/display/display_utils.js +777 -0
  60. package/lib/display/fetch_stream.js +205 -87
  61. package/lib/display/font_loader.js +468 -236
  62. package/lib/display/metadata.js +38 -16
  63. package/lib/display/network.js +635 -428
  64. package/lib/display/network_utils.js +38 -19
  65. package/lib/display/node_stream.js +367 -175
  66. package/lib/display/pattern_helper.js +103 -36
  67. package/lib/display/svg.js +1232 -519
  68. package/lib/display/text_layer.js +208 -75
  69. package/lib/display/transport_stream.js +345 -94
  70. package/lib/display/webgl.js +64 -18
  71. package/lib/display/worker_options.js +5 -4
  72. package/lib/display/xml_parser.js +166 -53
  73. package/lib/examples/node/domstubs.js +60 -4
  74. package/lib/pdf.js +35 -14
  75. package/lib/pdf.worker.js +5 -3
  76. package/lib/shared/compatibility.js +170 -572
  77. package/lib/shared/global_scope.js +2 -2
  78. package/lib/shared/is_node.js +4 -4
  79. package/lib/shared/message_handler.js +216 -163
  80. package/lib/shared/streams_polyfill.js +21 -17
  81. package/lib/shared/util.js +495 -385
  82. package/lib/test/unit/annotation_spec.js +1464 -401
  83. package/lib/test/unit/api_spec.js +718 -361
  84. package/lib/test/unit/bidi_spec.js +7 -7
  85. package/lib/test/unit/cff_parser_spec.js +54 -11
  86. package/lib/test/unit/clitests_helper.js +9 -10
  87. package/lib/test/unit/cmap_spec.js +95 -41
  88. package/lib/test/unit/colorspace_spec.js +115 -63
  89. package/lib/test/unit/core_utils_spec.js +191 -0
  90. package/lib/test/unit/crypto_spec.js +17 -5
  91. package/lib/test/unit/custom_spec.js +43 -55
  92. package/lib/test/unit/display_svg_spec.js +34 -18
  93. package/lib/test/unit/display_utils_spec.js +273 -0
  94. package/lib/test/unit/document_spec.js +8 -13
  95. package/lib/test/unit/encodings_spec.js +25 -45
  96. package/lib/test/unit/evaluator_spec.js +59 -20
  97. package/lib/test/unit/fetch_stream_spec.js +111 -0
  98. package/lib/test/unit/function_spec.js +17 -5
  99. package/lib/test/unit/jasmine-boot.js +33 -20
  100. package/lib/test/unit/message_handler_spec.js +30 -13
  101. package/lib/test/unit/metadata_spec.js +71 -11
  102. package/lib/test/unit/murmurhash3_spec.js +3 -3
  103. package/lib/test/unit/network_spec.js +22 -55
  104. package/lib/test/unit/network_utils_spec.js +105 -14
  105. package/lib/test/unit/node_stream_spec.js +58 -34
  106. package/lib/test/unit/parser_spec.js +162 -71
  107. package/lib/test/unit/pdf_find_controller_spec.js +230 -0
  108. package/lib/test/unit/pdf_find_utils_spec.js +63 -0
  109. package/lib/test/unit/pdf_history_spec.js +21 -9
  110. package/lib/test/unit/primitives_spec.js +55 -22
  111. package/lib/test/unit/stream_spec.js +12 -4
  112. package/lib/test/unit/test_utils.js +273 -56
  113. package/lib/test/unit/testreporter.js +21 -3
  114. package/lib/test/unit/type1_parser_spec.js +9 -7
  115. package/lib/test/unit/ui_utils_spec.js +236 -36
  116. package/lib/test/unit/unicode_spec.js +18 -15
  117. package/lib/test/unit/util_spec.js +87 -128
  118. package/lib/web/annotation_layer_builder.js +39 -22
  119. package/lib/web/app.js +1252 -609
  120. package/lib/web/app_options.js +103 -65
  121. package/lib/web/base_viewer.js +522 -242
  122. package/lib/web/chromecom.js +259 -117
  123. package/lib/web/debugger.js +166 -22
  124. package/lib/web/download_manager.js +31 -12
  125. package/lib/web/firefox_print_service.js +27 -14
  126. package/lib/web/firefoxcom.js +318 -78
  127. package/lib/web/genericcom.js +89 -30
  128. package/lib/web/genericl10n.js +142 -30
  129. package/lib/web/grab_to_pan.js +28 -4
  130. package/lib/web/interfaces.js +174 -47
  131. package/lib/web/overlay_manager.js +235 -85
  132. package/lib/web/password_prompt.js +22 -14
  133. package/lib/web/pdf_attachment_viewer.js +38 -18
  134. package/lib/web/pdf_cursor_tools.js +39 -16
  135. package/lib/web/pdf_document_properties.js +255 -136
  136. package/lib/web/pdf_find_bar.js +84 -40
  137. package/lib/web/pdf_find_controller.js +495 -184
  138. package/lib/web/pdf_find_utils.js +111 -0
  139. package/lib/web/pdf_history.js +190 -53
  140. package/lib/web/pdf_link_service.js +144 -79
  141. package/lib/web/pdf_outline_viewer.js +124 -47
  142. package/lib/web/pdf_page_view.js +194 -74
  143. package/lib/web/pdf_presentation_mode.js +99 -34
  144. package/lib/web/pdf_print_service.js +59 -13
  145. package/lib/web/pdf_rendering_queue.js +28 -9
  146. package/lib/web/pdf_sidebar.js +144 -81
  147. package/lib/web/pdf_sidebar_resizer.js +42 -16
  148. package/lib/web/pdf_single_page_viewer.js +74 -66
  149. package/lib/web/pdf_thumbnail_view.js +104 -33
  150. package/lib/web/pdf_thumbnail_viewer.js +66 -26
  151. package/lib/web/pdf_viewer.component.js +112 -32
  152. package/lib/web/pdf_viewer.js +82 -87
  153. package/lib/web/preferences.js +284 -91
  154. package/lib/web/secondary_toolbar.js +132 -59
  155. package/lib/web/text_layer_builder.js +134 -59
  156. package/lib/web/toolbar.js +80 -43
  157. package/lib/web/ui_utils.js +400 -134
  158. package/lib/web/view_history.js +215 -67
  159. package/lib/web/viewer_compatibility.js +3 -8
  160. package/package.json +3 -2
  161. package/web/pdf_viewer.css +23 -15
  162. package/web/pdf_viewer.js +3429 -1245
  163. package/web/pdf_viewer.js.map +1 -1
  164. package/external/streams/streams-lib.js +0 -3962
  165. package/lib/display/dom_utils.js +0 -429
  166. package/lib/test/unit/dom_utils_spec.js +0 -89
  167. package/lib/test/unit/fonts_spec.js +0 -81
  168. package/lib/web/dom_events.js +0 -137
@@ -2,7 +2,7 @@
2
2
  * @licstart The following is the entire license notice for the
3
3
  * Javascript code in this page
4
4
  *
5
- * Copyright 2017 Mozilla Foundation
5
+ * Copyright 2019 Mozilla Foundation
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.
@@ -19,74 +19,133 @@
19
19
  * @licend The above is the entire license notice for the
20
20
  * Javascript code in this page
21
21
  */
22
- 'use strict';
22
+ "use strict";
23
23
 
24
24
  Object.defineProperty(exports, "__esModule", {
25
25
  value: true
26
26
  });
27
- exports.GenericCom = undefined;
27
+ exports.GenericCom = void 0;
28
28
 
29
- var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
29
+ var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
30
30
 
31
- var _app = require('./app');
31
+ var _app = require("./app");
32
32
 
33
- var _preferences = require('./preferences');
33
+ var _preferences = require("./preferences");
34
34
 
35
- var _download_manager = require('./download_manager');
35
+ var _download_manager = require("./download_manager");
36
36
 
37
- var _genericl10n = require('./genericl10n');
37
+ var _genericl10n = require("./genericl10n");
38
+
39
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
40
+
41
+ function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
42
+
43
+ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
44
+
45
+ function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
38
46
 
39
47
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
40
48
 
41
- function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
49
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
50
+
51
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
52
+
53
+ function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
54
+
55
+ function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
42
56
 
43
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
57
+ function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
58
+
59
+ function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }
60
+
61
+ function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
44
62
 
45
63
  ;
46
64
  var GenericCom = {};
65
+ exports.GenericCom = GenericCom;
47
66
 
48
- var GenericPreferences = function (_BasePreferences) {
67
+ var GenericPreferences =
68
+ /*#__PURE__*/
69
+ function (_BasePreferences) {
49
70
  _inherits(GenericPreferences, _BasePreferences);
50
71
 
51
72
  function GenericPreferences() {
52
73
  _classCallCheck(this, GenericPreferences);
53
74
 
54
- return _possibleConstructorReturn(this, (GenericPreferences.__proto__ || Object.getPrototypeOf(GenericPreferences)).apply(this, arguments));
75
+ return _possibleConstructorReturn(this, _getPrototypeOf(GenericPreferences).apply(this, arguments));
55
76
  }
56
77
 
57
78
  _createClass(GenericPreferences, [{
58
- key: '_writeToStorage',
59
- value: function _writeToStorage(prefObj) {
60
- return new Promise(function (resolve) {
61
- localStorage.setItem('pdfjs.preferences', JSON.stringify(prefObj));
62
- resolve();
63
- });
64
- }
79
+ key: "_writeToStorage",
80
+ value: function () {
81
+ var _writeToStorage2 = _asyncToGenerator(
82
+ /*#__PURE__*/
83
+ _regenerator["default"].mark(function _callee(prefObj) {
84
+ return _regenerator["default"].wrap(function _callee$(_context) {
85
+ while (1) {
86
+ switch (_context.prev = _context.next) {
87
+ case 0:
88
+ localStorage.setItem('pdfjs.preferences', JSON.stringify(prefObj));
89
+
90
+ case 1:
91
+ case "end":
92
+ return _context.stop();
93
+ }
94
+ }
95
+ }, _callee);
96
+ }));
97
+
98
+ function _writeToStorage(_x) {
99
+ return _writeToStorage2.apply(this, arguments);
100
+ }
101
+
102
+ return _writeToStorage;
103
+ }()
65
104
  }, {
66
- key: '_readFromStorage',
67
- value: function _readFromStorage(prefObj) {
68
- return new Promise(function (resolve) {
69
- var readPrefs = JSON.parse(localStorage.getItem('pdfjs.preferences'));
70
- resolve(readPrefs);
71
- });
72
- }
105
+ key: "_readFromStorage",
106
+ value: function () {
107
+ var _readFromStorage2 = _asyncToGenerator(
108
+ /*#__PURE__*/
109
+ _regenerator["default"].mark(function _callee2(prefObj) {
110
+ return _regenerator["default"].wrap(function _callee2$(_context2) {
111
+ while (1) {
112
+ switch (_context2.prev = _context2.next) {
113
+ case 0:
114
+ return _context2.abrupt("return", JSON.parse(localStorage.getItem('pdfjs.preferences')));
115
+
116
+ case 1:
117
+ case "end":
118
+ return _context2.stop();
119
+ }
120
+ }
121
+ }, _callee2);
122
+ }));
123
+
124
+ function _readFromStorage(_x2) {
125
+ return _readFromStorage2.apply(this, arguments);
126
+ }
127
+
128
+ return _readFromStorage;
129
+ }()
73
130
  }]);
74
131
 
75
132
  return GenericPreferences;
76
133
  }(_preferences.BasePreferences);
77
134
 
78
135
  var GenericExternalServices = Object.create(_app.DefaultExternalServices);
136
+
79
137
  GenericExternalServices.createDownloadManager = function (options) {
80
138
  return new _download_manager.DownloadManager(options);
81
139
  };
140
+
82
141
  GenericExternalServices.createPreferences = function () {
83
142
  return new GenericPreferences();
84
143
  };
144
+
85
145
  GenericExternalServices.createL10n = function (_ref) {
86
146
  var _ref$locale = _ref.locale,
87
- locale = _ref$locale === undefined ? 'en-US' : _ref$locale;
88
-
147
+ locale = _ref$locale === void 0 ? 'en-US' : _ref$locale;
89
148
  return new _genericl10n.GenericL10n(locale);
90
149
  };
91
- _app.PDFViewerApplication.externalServices = GenericExternalServices;
92
- exports.GenericCom = GenericCom;
150
+
151
+ _app.PDFViewerApplication.externalServices = GenericExternalServices;
@@ -2,7 +2,7 @@
2
2
  * @licstart The following is the entire license notice for the
3
3
  * Javascript code in this page
4
4
  *
5
- * Copyright 2017 Mozilla Foundation
5
+ * Copyright 2019 Mozilla Foundation
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.
@@ -19,22 +19,34 @@
19
19
  * @licend The above is the entire license notice for the
20
20
  * Javascript code in this page
21
21
  */
22
- 'use strict';
22
+ "use strict";
23
23
 
24
24
  Object.defineProperty(exports, "__esModule", {
25
25
  value: true
26
26
  });
27
- exports.GenericL10n = undefined;
27
+ exports.GenericL10n = void 0;
28
28
 
29
- var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
29
+ var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
30
30
 
31
- require('../external/webL10n/l10n');
31
+ require("../external/webL10n/l10n");
32
+
33
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
34
+
35
+ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
36
+
37
+ function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
32
38
 
33
39
  function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
34
40
 
41
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
42
+
43
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
44
+
35
45
  var webL10n = document.webL10n;
36
46
 
37
- var GenericL10n = function () {
47
+ var GenericL10n =
48
+ /*#__PURE__*/
49
+ function () {
38
50
  function GenericL10n(lang) {
39
51
  _classCallCheck(this, GenericL10n);
40
52
 
@@ -47,33 +59,133 @@ var GenericL10n = function () {
47
59
  }
48
60
 
49
61
  _createClass(GenericL10n, [{
50
- key: 'getLanguage',
51
- value: function getLanguage() {
52
- return this._ready.then(function (l10n) {
53
- return l10n.getLanguage();
54
- });
55
- }
62
+ key: "getLanguage",
63
+ value: function () {
64
+ var _getLanguage = _asyncToGenerator(
65
+ /*#__PURE__*/
66
+ _regenerator["default"].mark(function _callee() {
67
+ var l10n;
68
+ return _regenerator["default"].wrap(function _callee$(_context) {
69
+ while (1) {
70
+ switch (_context.prev = _context.next) {
71
+ case 0:
72
+ _context.next = 2;
73
+ return this._ready;
74
+
75
+ case 2:
76
+ l10n = _context.sent;
77
+ return _context.abrupt("return", l10n.getLanguage());
78
+
79
+ case 4:
80
+ case "end":
81
+ return _context.stop();
82
+ }
83
+ }
84
+ }, _callee, this);
85
+ }));
86
+
87
+ function getLanguage() {
88
+ return _getLanguage.apply(this, arguments);
89
+ }
90
+
91
+ return getLanguage;
92
+ }()
56
93
  }, {
57
- key: 'getDirection',
58
- value: function getDirection() {
59
- return this._ready.then(function (l10n) {
60
- return l10n.getDirection();
61
- });
62
- }
94
+ key: "getDirection",
95
+ value: function () {
96
+ var _getDirection = _asyncToGenerator(
97
+ /*#__PURE__*/
98
+ _regenerator["default"].mark(function _callee2() {
99
+ var l10n;
100
+ return _regenerator["default"].wrap(function _callee2$(_context2) {
101
+ while (1) {
102
+ switch (_context2.prev = _context2.next) {
103
+ case 0:
104
+ _context2.next = 2;
105
+ return this._ready;
106
+
107
+ case 2:
108
+ l10n = _context2.sent;
109
+ return _context2.abrupt("return", l10n.getDirection());
110
+
111
+ case 4:
112
+ case "end":
113
+ return _context2.stop();
114
+ }
115
+ }
116
+ }, _callee2, this);
117
+ }));
118
+
119
+ function getDirection() {
120
+ return _getDirection.apply(this, arguments);
121
+ }
122
+
123
+ return getDirection;
124
+ }()
63
125
  }, {
64
- key: 'get',
65
- value: function get(property, args, fallback) {
66
- return this._ready.then(function (l10n) {
67
- return l10n.get(property, args, fallback);
68
- });
69
- }
126
+ key: "get",
127
+ value: function () {
128
+ var _get = _asyncToGenerator(
129
+ /*#__PURE__*/
130
+ _regenerator["default"].mark(function _callee3(property, args, fallback) {
131
+ var l10n;
132
+ return _regenerator["default"].wrap(function _callee3$(_context3) {
133
+ while (1) {
134
+ switch (_context3.prev = _context3.next) {
135
+ case 0:
136
+ _context3.next = 2;
137
+ return this._ready;
138
+
139
+ case 2:
140
+ l10n = _context3.sent;
141
+ return _context3.abrupt("return", l10n.get(property, args, fallback));
142
+
143
+ case 4:
144
+ case "end":
145
+ return _context3.stop();
146
+ }
147
+ }
148
+ }, _callee3, this);
149
+ }));
150
+
151
+ function get(_x, _x2, _x3) {
152
+ return _get.apply(this, arguments);
153
+ }
154
+
155
+ return get;
156
+ }()
70
157
  }, {
71
- key: 'translate',
72
- value: function translate(element) {
73
- return this._ready.then(function (l10n) {
74
- return l10n.translate(element);
75
- });
76
- }
158
+ key: "translate",
159
+ value: function () {
160
+ var _translate = _asyncToGenerator(
161
+ /*#__PURE__*/
162
+ _regenerator["default"].mark(function _callee4(element) {
163
+ var l10n;
164
+ return _regenerator["default"].wrap(function _callee4$(_context4) {
165
+ while (1) {
166
+ switch (_context4.prev = _context4.next) {
167
+ case 0:
168
+ _context4.next = 2;
169
+ return this._ready;
170
+
171
+ case 2:
172
+ l10n = _context4.sent;
173
+ return _context4.abrupt("return", l10n.translate(element));
174
+
175
+ case 4:
176
+ case "end":
177
+ return _context4.stop();
178
+ }
179
+ }
180
+ }, _callee4, this);
181
+ }));
182
+
183
+ function translate(_x4) {
184
+ return _translate.apply(this, arguments);
185
+ }
186
+
187
+ return translate;
188
+ }()
77
189
  }]);
78
190
 
79
191
  return GenericL10n;
@@ -2,7 +2,7 @@
2
2
  * @licstart The following is the entire license notice for the
3
3
  * Javascript code in this page
4
4
  *
5
- * Copyright 2017 Mozilla Foundation
5
+ * Copyright 2019 Mozilla Foundation
6
6
  *
7
7
  * Licensed under the Apache License, Version 2.0 (the "License");
8
8
  * you may not use this file except in compliance with the License.
@@ -19,17 +19,21 @@
19
19
  * @licend The above is the entire license notice for the
20
20
  * Javascript code in this page
21
21
  */
22
- 'use strict';
22
+ "use strict";
23
23
 
24
24
  Object.defineProperty(exports, "__esModule", {
25
25
  value: true
26
26
  });
27
+ exports.GrabToPan = GrabToPan;
28
+
27
29
  function GrabToPan(options) {
28
30
  this.element = options.element;
29
31
  this.document = options.element.ownerDocument;
32
+
30
33
  if (typeof options.ignoreTarget === 'function') {
31
34
  this.ignoreTarget = options.ignoreTarget;
32
35
  }
36
+
33
37
  this.onActiveChanged = options.onActiveChanged;
34
38
  this.activate = this.activate.bind(this);
35
39
  this.deactivate = this.deactivate.bind(this);
@@ -40,6 +44,7 @@ function GrabToPan(options) {
40
44
  var overlay = this.overlay = document.createElement('div');
41
45
  overlay.className = 'grab-to-pan-grabbing';
42
46
  }
47
+
43
48
  GrabToPan.prototype = {
44
49
  CSS_CLASS_GRAB: 'grab-to-pan-grab',
45
50
  activate: function GrabToPan_activate() {
@@ -47,6 +52,7 @@ GrabToPan.prototype = {
47
52
  this.active = true;
48
53
  this.element.addEventListener('mousedown', this._onmousedown, true);
49
54
  this.element.classList.add(this.CSS_CLASS_GRAB);
55
+
50
56
  if (this.onActiveChanged) {
51
57
  this.onActiveChanged(true);
52
58
  }
@@ -56,8 +62,11 @@ GrabToPan.prototype = {
56
62
  if (this.active) {
57
63
  this.active = false;
58
64
  this.element.removeEventListener('mousedown', this._onmousedown, true);
65
+
59
66
  this._endPan();
67
+
60
68
  this.element.classList.remove(this.CSS_CLASS_GRAB);
69
+
61
70
  if (this.onActiveChanged) {
62
71
  this.onActiveChanged(false);
63
72
  }
@@ -77,6 +86,7 @@ GrabToPan.prototype = {
77
86
  if (event.button !== 0 || this.ignoreTarget(event.target)) {
78
87
  return;
79
88
  }
89
+
80
90
  if (event.originalTarget) {
81
91
  try {
82
92
  event.originalTarget.tagName;
@@ -84,6 +94,7 @@ GrabToPan.prototype = {
84
94
  return;
85
95
  }
86
96
  }
97
+
87
98
  this.scrollLeftStart = this.element.scrollLeft;
88
99
  this.scrollTopStart = this.element.scrollTop;
89
100
  this.clientXStart = event.clientX;
@@ -94,20 +105,25 @@ GrabToPan.prototype = {
94
105
  event.preventDefault();
95
106
  event.stopPropagation();
96
107
  var focusedElement = document.activeElement;
108
+
97
109
  if (focusedElement && !focusedElement.contains(event.target)) {
98
110
  focusedElement.blur();
99
111
  }
100
112
  },
101
113
  _onmousemove: function GrabToPan__onmousemove(event) {
102
114
  this.element.removeEventListener('scroll', this._endPan, true);
115
+
103
116
  if (isLeftMouseReleased(event)) {
104
117
  this._endPan();
118
+
105
119
  return;
106
120
  }
121
+
107
122
  var xDiff = event.clientX - this.clientXStart;
108
123
  var yDiff = event.clientY - this.clientYStart;
109
124
  var scrollTop = this.scrollTopStart - yDiff;
110
125
  var scrollLeft = this.scrollLeftStart - xDiff;
126
+
111
127
  if (this.element.scrollTo) {
112
128
  this.element.scrollTo({
113
129
  top: scrollTop,
@@ -118,6 +134,7 @@ GrabToPan.prototype = {
118
134
  this.element.scrollTop = scrollTop;
119
135
  this.element.scrollLeft = scrollLeft;
120
136
  }
137
+
121
138
  if (!this.overlay.parentNode) {
122
139
  document.body.appendChild(this.overlay);
123
140
  }
@@ -132,25 +149,32 @@ GrabToPan.prototype = {
132
149
  var matchesSelector;
133
150
  ['webkitM', 'mozM', 'msM', 'oM', 'm'].some(function (prefix) {
134
151
  var name = prefix + 'atches';
152
+
135
153
  if (name in document.documentElement) {
136
154
  matchesSelector = name;
137
155
  }
156
+
138
157
  name += 'Selector';
158
+
139
159
  if (name in document.documentElement) {
140
160
  matchesSelector = name;
141
161
  }
162
+
142
163
  return matchesSelector;
143
164
  });
144
165
  var isNotIEorIsIE10plus = !document.documentMode || document.documentMode > 9;
145
166
  var chrome = window.chrome;
146
167
  var isChrome15OrOpera15plus = chrome && (chrome.webstore || chrome.app);
147
168
  var isSafari6plus = /Apple/.test(navigator.vendor) && /Version\/([6-9]\d*|[1-5]\d+)/.test(navigator.userAgent);
169
+
148
170
  function isLeftMouseReleased(event) {
149
171
  if ('buttons' in event && isNotIEorIsIE10plus) {
150
172
  return !(event.buttons & 1);
151
173
  }
174
+
152
175
  if (isChrome15OrOpera15plus || isSafari6plus) {
153
176
  return event.which === 0;
154
177
  }
155
- }
156
- exports.GrabToPan = GrabToPan;
178
+
179
+ return false;
180
+ }