@internetarchive/bookreader 5.0.0-29 → 5.0.0-30-c
Sign up to get free protection for your applications and to get access to all the features.
- package/BookReader/BookReader.js +32267 -2
- package/BookReader/BookReader.js.map +1 -1
- package/BookReader/ia-bookreader-bundle.js +15232 -0
- package/BookReader/ia-bookreader-bundle.js.map +1 -0
- package/BookReader/jquery-1.10.1.js +108 -2
- package/BookReader/plugins/plugin.archive_analytics.js +170 -1
- package/BookReader/plugins/plugin.archive_analytics.js.map +1 -1
- package/BookReader/plugins/plugin.autoplay.js +163 -1
- package/BookReader/plugins/plugin.autoplay.js.map +1 -1
- package/BookReader/plugins/plugin.chapters.js +333 -1
- package/BookReader/plugins/plugin.chapters.js.map +1 -1
- package/BookReader/plugins/plugin.iframe.js +72 -1
- package/BookReader/plugins/plugin.iframe.js.map +1 -1
- package/BookReader/plugins/plugin.mobile_nav.js +332 -1
- package/BookReader/plugins/plugin.mobile_nav.js.map +1 -1
- package/BookReader/plugins/plugin.resume.js +241 -1
- package/BookReader/plugins/plugin.resume.js.map +1 -1
- package/BookReader/plugins/plugin.search.js +1261 -1
- package/BookReader/plugins/plugin.search.js.map +1 -1
- package/BookReader/plugins/plugin.text_selection.js +839 -1
- package/BookReader/plugins/plugin.text_selection.js.map +1 -1
- package/BookReader/plugins/plugin.tts.js +9115 -2
- package/BookReader/plugins/plugin.tts.js.map +1 -1
- package/BookReader/plugins/plugin.url.js +811 -1
- package/BookReader/plugins/plugin.url.js.map +1 -1
- package/BookReader/plugins/plugin.vendor-fullscreen.js +326 -1
- package/BookReader/plugins/plugin.vendor-fullscreen.js.map +1 -1
- package/BookReader/webcomponents-bundle.js +411 -2
- package/BookReader/webcomponents-bundle.js.map +1 -1
- package/BookReaderDemo/IADemoBr.js +3 -0
- package/BookReaderDemo/demo-internetarchive.html +6 -8
- package/package.json +4 -4
- package/src/BookNavigator/book-navigator.js +7 -0
- package/src/BookReader/Mode1Up.js +1 -0
- package/src/BookReader/Mode1UpLit.js +5 -1
- package/src/{BookReaderComponent/BookReaderComponent.js → ia-bookreader/ia-bookreader.js} +93 -17
- package/webpack.config.js +2 -2
- package/BookReader/BookReader.js.LICENSE.txt +0 -117
- package/BookReader/bookreader-component-bundle.js +0 -1464
- package/BookReader/bookreader-component-bundle.js.LICENSE.txt +0 -50
- package/BookReader/bookreader-component-bundle.js.map +0 -1
- package/BookReader/jquery-1.10.1.js.LICENSE.txt +0 -24
- package/BookReader/plugins/plugin.tts.js.LICENSE.txt +0 -27
- package/BookReader/webcomponents-bundle.js.LICENSE.txt +0 -9
@@ -1,50 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* @license
|
3
|
-
* Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
|
4
|
-
* This code may only be used under the BSD style license found at
|
5
|
-
* http://polymer.github.io/LICENSE.txt
|
6
|
-
* The complete set of authors may be found at
|
7
|
-
* http://polymer.github.io/AUTHORS.txt
|
8
|
-
* The complete set of contributors may be found at
|
9
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
10
|
-
* Code distributed by Google as part of the polymer project is also
|
11
|
-
* subject to an additional IP rights grant found at
|
12
|
-
* http://polymer.github.io/PATENTS.txt
|
13
|
-
*/
|
14
|
-
|
15
|
-
/**
|
16
|
-
* @license
|
17
|
-
* Copyright (c) 2018 The Polymer Project Authors. All rights reserved.
|
18
|
-
* This code may only be used under the BSD style license found at
|
19
|
-
* http://polymer.github.io/LICENSE.txt
|
20
|
-
* The complete set of authors may be found at
|
21
|
-
* http://polymer.github.io/AUTHORS.txt
|
22
|
-
* The complete set of contributors may be found at
|
23
|
-
* http://polymer.github.io/CONTRIBUTORS.txt
|
24
|
-
* Code distributed by Google as part of the polymer project is also
|
25
|
-
* subject to an additional IP rights grant found at
|
26
|
-
* http://polymer.github.io/PATENTS.txt
|
27
|
-
*/
|
28
|
-
|
29
|
-
/**
|
30
|
-
* @license
|
31
|
-
* Copyright 2017 Google LLC
|
32
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
33
|
-
*/
|
34
|
-
|
35
|
-
/**
|
36
|
-
* @license
|
37
|
-
* Copyright 2019 Google LLC
|
38
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
39
|
-
*/
|
40
|
-
|
41
|
-
/**
|
42
|
-
@license
|
43
|
-
Copyright (c) 2019 The Polymer Project Authors. All rights reserved.
|
44
|
-
This code may only be used under the BSD style license found at
|
45
|
-
http://polymer.github.io/LICENSE.txt The complete set of authors may be found at
|
46
|
-
http://polymer.github.io/AUTHORS.txt The complete set of contributors may be
|
47
|
-
found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as
|
48
|
-
part of the polymer project is also subject to an additional IP rights grant
|
49
|
-
found at http://polymer.github.io/PATENTS.txt
|
50
|
-
*/
|