mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 10:08:06 +02:00
Adds UMD headers to core, display and shared files.
This commit is contained in:
parent
1b5940edd2
commit
6b60c8f4db
54 changed files with 1876 additions and 572 deletions
|
@ -15,6 +15,16 @@
|
|||
|
||||
'use strict';
|
||||
|
||||
(function (root, factory) {
|
||||
if (typeof define === 'function' && define.amd) {
|
||||
define('pdfjs/core/glyphlist', ['exports'], factory);
|
||||
} else if (typeof exports !== 'undefined') {
|
||||
factory(exports);
|
||||
} else {
|
||||
factory((root.pdfjsCoreGlyphList = {}));
|
||||
}
|
||||
}(this, function (exports) {
|
||||
|
||||
var GlyphsUnicode = {
|
||||
A: 0x0041,
|
||||
AE: 0x00C6,
|
||||
|
@ -4427,3 +4437,7 @@ var DingbatsGlyphsUnicode = {
|
|||
a96: 0x2775, // 0xF8E4
|
||||
'.notdef': 0x0000
|
||||
};
|
||||
|
||||
exports.GlyphsUnicode = GlyphsUnicode;
|
||||
exports.DingbatsGlyphsUnicode = DingbatsGlyphsUnicode;
|
||||
}));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue