mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-10 02:05:37 +02:00
Convert the files in the /web
folder to ES6 modules
Note that as discussed on IRC, this makes the viewer slightly slower to load *only* in `gulp server` mode, however the difference seem slight enough that I think it will be fine.
This commit is contained in:
parent
313060aff5
commit
3b35c15d42
32 changed files with 1585 additions and 2045 deletions
|
@ -13,20 +13,7 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
'use strict';
|
||||
|
||||
(function (root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
define('pdfjs-web/pdf_find_controller', ['exports', 'pdfjs-web/ui_utils'],
|
||||
factory);
|
||||
} else if (typeof exports !== 'undefined') {
|
||||
factory(exports, require('./ui_utils.js'));
|
||||
} else {
|
||||
factory((root.pdfjsWebPDFFindController = {}), root.pdfjsWebUIUtils);
|
||||
}
|
||||
}(this, function (exports, uiUtils) {
|
||||
|
||||
var scrollIntoView = uiUtils.scrollIntoView;
|
||||
import { scrollIntoView } from 'pdfjs-web/ui_utils';
|
||||
|
||||
var FindStates = {
|
||||
FIND_FOUND: 0,
|
||||
|
@ -505,6 +492,7 @@ var PDFFindController = (function PDFFindControllerClosure() {
|
|||
return PDFFindController;
|
||||
})();
|
||||
|
||||
exports.FindStates = FindStates;
|
||||
exports.PDFFindController = PDFFindController;
|
||||
}));
|
||||
export {
|
||||
FindStates,
|
||||
PDFFindController,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue