mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-08 17:30:09 +02:00
Moves shared/global to display/global
This commit is contained in:
parent
e372f3608b
commit
a8e5912cb1
8 changed files with 36 additions and 37 deletions
|
@ -18,21 +18,20 @@
|
|||
(function (root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
define('pdfjs/display/dom_utils', ['exports', 'pdfjs/shared/util',
|
||||
'pdfjs/shared/global'], factory);
|
||||
'pdfjs/display/global'], factory);
|
||||
} else if (typeof exports !== 'undefined') {
|
||||
factory(exports, require('../shared/util.js'),
|
||||
require('../shared/global.js'));
|
||||
factory(exports, require('../shared/util.js'), require('./global.js'));
|
||||
} else {
|
||||
factory((root.pdfjsDisplayDOMUtils = {}), root.pdfjsSharedUtil,
|
||||
root.pdfjsSharedGlobal);
|
||||
root.pdfjsDisplayGlobal);
|
||||
}
|
||||
}(this, function (exports, sharedUtil, sharedGlobal) {
|
||||
}(this, function (exports, sharedUtil, displayGlobal) {
|
||||
|
||||
var deprecated = sharedUtil.deprecated;
|
||||
var removeNullCharacters = sharedUtil.removeNullCharacters;
|
||||
var shadow = sharedUtil.shadow;
|
||||
var warn = sharedUtil.warn;
|
||||
var PDFJS = sharedGlobal.PDFJS;
|
||||
var PDFJS = displayGlobal.PDFJS;
|
||||
|
||||
/**
|
||||
* Optimised CSS custom property getter/setter.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue