From 0e1b49675aeff4c8951dbddc493207469f846d35 Mon Sep 17 00:00:00 2001
From: Sebastian Kupke
Date: Thu, 19 Sep 2019 13:38:24 +0200
Subject: [PATCH] Fixed loader bug.
---
dist/iwmlib.js | 27 ++++++++-----------
dist/iwmlib.pixi.js | 4 ++-
doc/out/AbstractPopup.html | 2 +-
doc/out/Badge.html | 2 +-
doc/out/BlurFilter.html | 2 +-
doc/out/Button.html | 2 +-
doc/out/ButtonGroup.html | 2 +-
doc/out/DeepZoomImage.html | 2 +-
doc/out/DeepZoomInfo.html | 2 +-
doc/out/Flippable.html | 2 +-
doc/out/FontInfo.html | 2 +-
doc/out/Hypenate.html | 2 +-
doc/out/InteractivePopup.html | 2 +-
...beledGraphics.exports.LabeledGraphics.html | 2 +-
doc/out/LabeledGraphics.html | 2 +-
doc/out/List.html | 2 +-
doc/out/Message.html | 2 +-
doc/out/MessageInteractivePopup.html | 2 +-
doc/out/MessageMessageInteractivePopup.html | 2 +-
doc/out/Modal.html | 2 +-
doc/out/ModalInteractivePopup.html | 2 +-
doc/out/ModalModalInteractivePopup.html | 2 +-
doc/out/PIXIApp.html | 2 +-
doc/out/Popup.html | 2 +-
doc/out/PopupInteractivePopup.html | 2 +-
doc/out/PopupMenu.html | 2 +-
doc/out/PopupMenuPopupInteractivePopup.html | 2 +-
...pupMenuPopupMenuPopupInteractivePopup.html | 2 +-
...nuPopupMenuPopupPopupInteractivePopup.html | 2 +-
.../PopupMenuPopupPopupInteractivePopup.html | 2 +-
doc/out/PopupPopupInteractivePopup.html | 2 +-
doc/out/Progress.html | 2 +-
doc/out/Scrollview.html | 2 +-
doc/out/Slider.html | 2 +-
doc/out/Switch.html | 2 +-
doc/out/TextLabel.TextLabel.html | 2 +-
doc/out/Theme.html | 2 +-
doc/out/ThemeDark.html | 2 +-
doc/out/ThemeLight.html | 2 +-
doc/out/ThemeRed.html | 2 +-
doc/out/TileQuadNode.html | 2 +-
doc/out/Tooltip.html | 2 +-
doc/out/UITest.html | 2 +-
doc/out/Volatile.html | 2 +-
doc/out/global.html | 2 +-
doc/out/index.html | 2 +-
doc/out/pixi_abstractpopup.js.html | 2 +-
doc/out/pixi_app.js.html | 2 +-
doc/out/pixi_badge.js.html | 2 +-
doc/out/pixi_blurfilter.js.html | 2 +-
doc/out/pixi_button.js.html | 2 +-
doc/out/pixi_buttongroup.js.html | 2 +-
doc/out/pixi_deepzoom_image.js.html | 2 +-
doc/out/pixi_flippable.js.html | 2 +-
doc/out/pixi_labeledgraphics.js.html | 2 +-
doc/out/pixi_list.js.html | 2 +-
doc/out/pixi_message.js.html | 2 +-
doc/out/pixi_modal.js.html | 2 +-
doc/out/pixi_popup.js.html | 2 +-
doc/out/pixi_popupmenu.js.html | 2 +-
doc/out/pixi_progress.js.html | 2 +-
doc/out/pixi_scrollview.js.html | 2 +-
doc/out/pixi_slider.js.html | 2 +-
doc/out/pixi_switch.js.html | 2 +-
doc/out/pixi_theme.js.html | 2 +-
doc/out/pixi_tooltip.js.html | 2 +-
doc/out/pixi_volatile.js.html | 2 +-
doc/out/uitest.js.html | 2 +-
lib/pixi/deepzoom/loader.js | 2 +-
lib/scatter.js | 9 ++++++-
package-lock.json | 2 +-
71 files changed, 90 insertions(+), 86 deletions(-)
diff --git a/dist/iwmlib.js b/dist/iwmlib.js
index 023690d..dee8568 100644
--- a/dist/iwmlib.js
+++ b/dist/iwmlib.js
@@ -2631,6 +2631,7 @@
tapDistance = 10,
longPressTime = 500.0,
useCapture = true,
+ capturePointerEvents = true,
mouseWheelElement = null,
logInteractionsAbove = 12
} = {}
@@ -2638,6 +2639,7 @@
super(element, target, {
tapDistance,
useCapture,
+ capturePointerEvents,
longPressTime,
mouseWheelElement
});
@@ -3911,7 +3913,14 @@
*/
constructor(
element,
- { stopEvents = 'auto', claimEvents = true, useCapture = true, touchAction = 'none', debugCanvas = null } = {}
+ {
+ stopEvents = 'auto',
+ claimEvents = true,
+ useCapture = true,
+ capturePointerEvents = true,
+ touchAction = 'none',
+ debugCanvas = null
+ } = {}
) {
this.onCapture = null;
this.element = element;
@@ -3936,6 +3945,7 @@
this.scatter = new Map();
this.delegate = new InteractionMapper$1(element, this, {
useCapture,
+ capturePointerEvents,
mouseWheelElement: window
});
@@ -10962,21 +10972,6 @@
}
speak() {
- /**
- * This is a little bit ugly, but imho the most elegant of all dirty solutions.
- *
- 5ht * Within the plugins we have no knowledge of other cards and such. But must differentiate the
- * clicks by their corresponding owner. The SpeechUtterance just takes a text and has no knowledge
- * about the node that is currently read to the user.
- *
- * This means, that we can identify same text, but not differentiate same text on different nodes.
- * To account for that, we add the node to the speechSynthesis object (#benefitsOfJavaScript) and
- * have access to the node, by - let's say - expanding the functionality of the SpeechSynthesis object.
- *
- * SO -17.07.19
- */
-
- let activeNode = window.speechSynthesis['speechPluginNode'];
this._updateText();
}
diff --git a/dist/iwmlib.pixi.js b/dist/iwmlib.pixi.js
index d94ce43..46e7dcb 100644
--- a/dist/iwmlib.pixi.js
+++ b/dist/iwmlib.pixi.js
@@ -6260,6 +6260,7 @@
tapDistance = 10,
longPressTime = 500.0,
useCapture = true,
+ capturePointerEvents = true,
mouseWheelElement = null,
logInteractionsAbove = 12
} = {}
@@ -6267,6 +6268,7 @@
super(element, target, {
tapDistance,
useCapture,
+ capturePointerEvents,
longPressTime,
mouseWheelElement
});
@@ -8762,7 +8764,7 @@
this.loader.on('load', this._onLoaded.bind(this));
this.loader.on('error', this._onError.bind(this));
if (compression) {
- this.loader.pre(PIXI.compressedTextures.imageParser());
+ this.loader.use(PIXI.compressedTextures.ImageParser.use);
}
}
diff --git a/doc/out/AbstractPopup.html b/doc/out/AbstractPopup.html
index be8c805..e7db599 100644
--- a/doc/out/AbstractPopup.html
+++ b/doc/out/AbstractPopup.html
@@ -2918,7 +2918,7 @@ a string, a number or a PIXI.Text object.
diff --git a/doc/out/Badge.html b/doc/out/Badge.html
index 776683d..2109519 100644
--- a/doc/out/Badge.html
+++ b/doc/out/Badge.html
@@ -2374,7 +2374,7 @@ a string, a number or a PIXI.Text object.
diff --git a/doc/out/BlurFilter.html b/doc/out/BlurFilter.html
index 1d6e785..043a6c3 100644
--- a/doc/out/BlurFilter.html
+++ b/doc/out/BlurFilter.html
@@ -1798,7 +1798,7 @@ app.scene.filters = [blurFilter]
diff --git a/doc/out/Button.html b/doc/out/Button.html
index ab0c7cd..2d2ac7c 100644
--- a/doc/out/Button.html
+++ b/doc/out/Button.html
@@ -3816,7 +3816,7 @@ the tint property of the icon sprite.
diff --git a/doc/out/ButtonGroup.html b/doc/out/ButtonGroup.html
index 8624714..847b0f8 100644
--- a/doc/out/ButtonGroup.html
+++ b/doc/out/ButtonGroup.html
@@ -3578,7 +3578,7 @@ app.scene.addChild(buttonGroup)
diff --git a/doc/out/DeepZoomImage.html b/doc/out/DeepZoomImage.html
index 11968a7..2c7f1ec 100644
--- a/doc/out/DeepZoomImage.html
+++ b/doc/out/DeepZoomImage.html
@@ -5096,7 +5096,7 @@ i.e. after loading a single tile
diff --git a/doc/out/DeepZoomInfo.html b/doc/out/DeepZoomInfo.html
index e0deab3..03c9676 100644
--- a/doc/out/DeepZoomInfo.html
+++ b/doc/out/DeepZoomInfo.html
@@ -2609,7 +2609,7 @@ on completion.
diff --git a/doc/out/Flippable.html b/doc/out/Flippable.html
index 691b5d0..7d9762c 100644
--- a/doc/out/Flippable.html
+++ b/doc/out/Flippable.html
@@ -2512,7 +2512,7 @@ front.on('click', event => flippable.toggle())
diff --git a/doc/out/FontInfo.html b/doc/out/FontInfo.html
index 20eb092..3fc25a6 100644
--- a/doc/out/FontInfo.html
+++ b/doc/out/FontInfo.html
@@ -1559,7 +1559,7 @@
diff --git a/doc/out/Hypenate.html b/doc/out/Hypenate.html
index 45abd93..64d9497 100644
--- a/doc/out/Hypenate.html
+++ b/doc/out/Hypenate.html
@@ -1761,7 +1761,7 @@
diff --git a/doc/out/InteractivePopup.html b/doc/out/InteractivePopup.html
index bc8f329..1613816 100644
--- a/doc/out/InteractivePopup.html
+++ b/doc/out/InteractivePopup.html
@@ -2343,7 +2343,7 @@ a string, a number or a PIXI.Text object.
diff --git a/doc/out/LabeledGraphics.exports.LabeledGraphics.html b/doc/out/LabeledGraphics.exports.LabeledGraphics.html
index d58b5ad..22d4d02 100644
--- a/doc/out/LabeledGraphics.exports.LabeledGraphics.html
+++ b/doc/out/LabeledGraphics.exports.LabeledGraphics.html
@@ -1561,7 +1561,7 @@
diff --git a/doc/out/LabeledGraphics.html b/doc/out/LabeledGraphics.html
index 9564420..c60dcb1 100644
--- a/doc/out/LabeledGraphics.html
+++ b/doc/out/LabeledGraphics.html
@@ -2626,7 +2626,7 @@ than wanted
diff --git a/doc/out/List.html b/doc/out/List.html
index 111083c..9e979c4 100644
--- a/doc/out/List.html
+++ b/doc/out/List.html
@@ -2585,7 +2585,7 @@ app.scene.addChild(list)
diff --git a/doc/out/Message.html b/doc/out/Message.html
index 5535d0e..663357a 100644
--- a/doc/out/Message.html
+++ b/doc/out/Message.html
@@ -2441,7 +2441,7 @@ a string, a number or a PIXI.Text object.
diff --git a/doc/out/MessageInteractivePopup.html b/doc/out/MessageInteractivePopup.html
index 620c84a..82ed090 100644
--- a/doc/out/MessageInteractivePopup.html
+++ b/doc/out/MessageInteractivePopup.html
@@ -1789,7 +1789,7 @@ like Popup, Message...
diff --git a/doc/out/MessageMessageInteractivePopup.html b/doc/out/MessageMessageInteractivePopup.html
index e12b83a..1113999 100644
--- a/doc/out/MessageMessageInteractivePopup.html
+++ b/doc/out/MessageMessageInteractivePopup.html
@@ -1789,7 +1789,7 @@ like Popup, Message...
diff --git a/doc/out/Modal.html b/doc/out/Modal.html
index 9268b22..d4d9bc8 100644
--- a/doc/out/Modal.html
+++ b/doc/out/Modal.html
@@ -2342,7 +2342,7 @@ a string or a PIXI.Text object.
diff --git a/doc/out/ModalInteractivePopup.html b/doc/out/ModalInteractivePopup.html
index d6810e2..4853923 100644
--- a/doc/out/ModalInteractivePopup.html
+++ b/doc/out/ModalInteractivePopup.html
@@ -1789,7 +1789,7 @@ like Popup, Message...
diff --git a/doc/out/ModalModalInteractivePopup.html b/doc/out/ModalModalInteractivePopup.html
index 5606f80..40cb1aa 100644
--- a/doc/out/ModalModalInteractivePopup.html
+++ b/doc/out/ModalModalInteractivePopup.html
@@ -1789,7 +1789,7 @@ like Popup, Message...
diff --git a/doc/out/PIXIApp.html b/doc/out/PIXIApp.html
index b12b5cc..86734b0 100644
--- a/doc/out/PIXIApp.html
+++ b/doc/out/PIXIApp.html
@@ -5743,7 +5743,7 @@ rejected with an error.
diff --git a/doc/out/Popup.html b/doc/out/Popup.html
index a41018e..a3c4f96 100644
--- a/doc/out/Popup.html
+++ b/doc/out/Popup.html
@@ -2336,7 +2336,7 @@ a string, a number or a PIXI.Text object.
diff --git a/doc/out/PopupInteractivePopup.html b/doc/out/PopupInteractivePopup.html
index f60b3d7..6673317 100644
--- a/doc/out/PopupInteractivePopup.html
+++ b/doc/out/PopupInteractivePopup.html
@@ -1789,7 +1789,7 @@ like Popup, Message...
diff --git a/doc/out/PopupMenu.html b/doc/out/PopupMenu.html
index 2d17f33..cc75017 100644
--- a/doc/out/PopupMenu.html
+++ b/doc/out/PopupMenu.html
@@ -2390,7 +2390,7 @@ a string, a number or a PIXI.Text object.
diff --git a/doc/out/PopupMenuPopupInteractivePopup.html b/doc/out/PopupMenuPopupInteractivePopup.html
index 2fdb7a8..ad902c9 100644
--- a/doc/out/PopupMenuPopupInteractivePopup.html
+++ b/doc/out/PopupMenuPopupInteractivePopup.html
@@ -1789,7 +1789,7 @@ like Popup, Message...
diff --git a/doc/out/PopupMenuPopupMenuPopupInteractivePopup.html b/doc/out/PopupMenuPopupMenuPopupInteractivePopup.html
index 843463d..7490bb6 100644
--- a/doc/out/PopupMenuPopupMenuPopupInteractivePopup.html
+++ b/doc/out/PopupMenuPopupMenuPopupInteractivePopup.html
@@ -1789,7 +1789,7 @@ like Popup, Message...
diff --git a/doc/out/PopupMenuPopupMenuPopupPopupInteractivePopup.html b/doc/out/PopupMenuPopupMenuPopupPopupInteractivePopup.html
index 82c6ea4..50a8341 100644
--- a/doc/out/PopupMenuPopupMenuPopupPopupInteractivePopup.html
+++ b/doc/out/PopupMenuPopupMenuPopupPopupInteractivePopup.html
@@ -1789,7 +1789,7 @@ like Popup, Message...
diff --git a/doc/out/PopupMenuPopupPopupInteractivePopup.html b/doc/out/PopupMenuPopupPopupInteractivePopup.html
index 2d16281..c97d4d0 100644
--- a/doc/out/PopupMenuPopupPopupInteractivePopup.html
+++ b/doc/out/PopupMenuPopupPopupInteractivePopup.html
@@ -1789,7 +1789,7 @@ like Popup, Message...
diff --git a/doc/out/PopupPopupInteractivePopup.html b/doc/out/PopupPopupInteractivePopup.html
index 2051677..e11595e 100644
--- a/doc/out/PopupPopupInteractivePopup.html
+++ b/doc/out/PopupPopupInteractivePopup.html
@@ -1789,7 +1789,7 @@ like Popup, Message...
diff --git a/doc/out/Progress.html b/doc/out/Progress.html
index 33b97e4..f9e4446 100644
--- a/doc/out/Progress.html
+++ b/doc/out/Progress.html
@@ -2875,7 +2875,7 @@ app.scene.addChild(progress)
diff --git a/doc/out/Scrollview.html b/doc/out/Scrollview.html
index b2459f6..6cb6831 100644
--- a/doc/out/Scrollview.html
+++ b/doc/out/Scrollview.html
@@ -1707,7 +1707,7 @@ app.loader
diff --git a/doc/out/Slider.html b/doc/out/Slider.html
index 875cec4..54379e1 100644
--- a/doc/out/Slider.html
+++ b/doc/out/Slider.html
@@ -2966,7 +2966,7 @@ app.scene.addChild(slider)
diff --git a/doc/out/Switch.html b/doc/out/Switch.html
index 9ae523a..3990c3f 100644
--- a/doc/out/Switch.html
+++ b/doc/out/Switch.html
@@ -3396,7 +3396,7 @@ app.scene.addChild(switch1)
diff --git a/doc/out/TextLabel.TextLabel.html b/doc/out/TextLabel.TextLabel.html
index 6db9c5a..b20f46e 100644
--- a/doc/out/TextLabel.TextLabel.html
+++ b/doc/out/TextLabel.TextLabel.html
@@ -1690,7 +1690,7 @@
diff --git a/doc/out/Theme.html b/doc/out/Theme.html
index 93ce9b2..7c320b2 100644
--- a/doc/out/Theme.html
+++ b/doc/out/Theme.html
@@ -3165,7 +3165,7 @@ const app = new PIXIApp({
diff --git a/doc/out/ThemeDark.html b/doc/out/ThemeDark.html
index 8d50d9a..9b6cec0 100644
--- a/doc/out/ThemeDark.html
+++ b/doc/out/ThemeDark.html
@@ -1586,7 +1586,7 @@ const app = new PIXIApp({
diff --git a/doc/out/ThemeLight.html b/doc/out/ThemeLight.html
index ad3e230..6957587 100644
--- a/doc/out/ThemeLight.html
+++ b/doc/out/ThemeLight.html
@@ -1598,7 +1598,7 @@ const app = new PIXIApp({
diff --git a/doc/out/ThemeRed.html b/doc/out/ThemeRed.html
index dbe0598..4e934bd 100644
--- a/doc/out/ThemeRed.html
+++ b/doc/out/ThemeRed.html
@@ -1598,7 +1598,7 @@ const app = new PIXIApp({
diff --git a/doc/out/TileQuadNode.html b/doc/out/TileQuadNode.html
index 7ffe431..b8cbbd5 100644
--- a/doc/out/TileQuadNode.html
+++ b/doc/out/TileQuadNode.html
@@ -2050,7 +2050,7 @@ an indicator of tiles to free.
diff --git a/doc/out/Tooltip.html b/doc/out/Tooltip.html
index 283ad2e..e5c4758 100644
--- a/doc/out/Tooltip.html
+++ b/doc/out/Tooltip.html
@@ -2512,7 +2512,7 @@ a string, a number or a PIXI.Text object.
diff --git a/doc/out/UITest.html b/doc/out/UITest.html
index c99ae63..7cbeece 100644
--- a/doc/out/UITest.html
+++ b/doc/out/UITest.html
@@ -4183,7 +4183,7 @@ test.start()
diff --git a/doc/out/Volatile.html b/doc/out/Volatile.html
index e9355ad..1a4c7df 100644
--- a/doc/out/Volatile.html
+++ b/doc/out/Volatile.html
@@ -2099,7 +2099,7 @@ app.scene.addChild(button)
diff --git a/doc/out/global.html b/doc/out/global.html
index f2d7dbc..ee095dc 100644
--- a/doc/out/global.html
+++ b/doc/out/global.html
@@ -3320,7 +3320,7 @@
diff --git a/doc/out/index.html b/doc/out/index.html
index 00a3954..cec29a4 100644
--- a/doc/out/index.html
+++ b/doc/out/index.html
@@ -1485,7 +1485,7 @@
diff --git a/doc/out/pixi_abstractpopup.js.html b/doc/out/pixi_abstractpopup.js.html
index b5e0fa6..e8bbe03 100644
--- a/doc/out/pixi_abstractpopup.js.html
+++ b/doc/out/pixi_abstractpopup.js.html
@@ -1808,7 +1808,7 @@ export default class AbstractPopup extends PIXI.Graphics {
diff --git a/doc/out/pixi_app.js.html b/doc/out/pixi_app.js.html
index 17a1309..f0e8dc5 100644
--- a/doc/out/pixi_app.js.html
+++ b/doc/out/pixi_app.js.html
@@ -2188,7 +2188,7 @@ class FpsDisplay extends PIXI.Graphics {
diff --git a/doc/out/pixi_badge.js.html b/doc/out/pixi_badge.js.html
index ee69dd5..3788667 100644
--- a/doc/out/pixi_badge.js.html
+++ b/doc/out/pixi_badge.js.html
@@ -1569,7 +1569,7 @@ export default class Badge extends AbstractPopup {
diff --git a/doc/out/pixi_blurfilter.js.html b/doc/out/pixi_blurfilter.js.html
index 04ccf3c..70468aa 100644
--- a/doc/out/pixi_blurfilter.js.html
+++ b/doc/out/pixi_blurfilter.js.html
@@ -1733,7 +1733,7 @@ class TiltShiftYFilter extends TiltShiftAxisFilter {
diff --git a/doc/out/pixi_button.js.html b/doc/out/pixi_button.js.html
index d1773c0..7c727f4 100644
--- a/doc/out/pixi_button.js.html
+++ b/doc/out/pixi_button.js.html
@@ -2171,7 +2171,7 @@ export default class Button extends PIXI.Container {
diff --git a/doc/out/pixi_buttongroup.js.html b/doc/out/pixi_buttongroup.js.html
index 5c9817b..13ebb1e 100644
--- a/doc/out/pixi_buttongroup.js.html
+++ b/doc/out/pixi_buttongroup.js.html
@@ -2174,7 +2174,7 @@ export default class ButtonGroup extends PIXI.Container {
diff --git a/doc/out/pixi_deepzoom_image.js.html b/doc/out/pixi_deepzoom_image.js.html
index fc460b4..8c77f27 100644
--- a/doc/out/pixi_deepzoom_image.js.html
+++ b/doc/out/pixi_deepzoom_image.js.html
@@ -2512,7 +2512,7 @@ export class DeepZoomImage extends PIXI.Container {
diff --git a/doc/out/pixi_flippable.js.html b/doc/out/pixi_flippable.js.html
index b924957..eaf5783 100644
--- a/doc/out/pixi_flippable.js.html
+++ b/doc/out/pixi_flippable.js.html
@@ -1906,7 +1906,7 @@ export default class Flippable extends PIXI.projection.Camera3d {
diff --git a/doc/out/pixi_labeledgraphics.js.html b/doc/out/pixi_labeledgraphics.js.html
index 719ea72..61ef2c2 100644
--- a/doc/out/pixi_labeledgraphics.js.html
+++ b/doc/out/pixi_labeledgraphics.js.html
@@ -1855,7 +1855,7 @@ export class BitmapLabeledGraphics extends LabeledGraphics {
diff --git a/doc/out/pixi_list.js.html b/doc/out/pixi_list.js.html
index e333569..26b60f4 100644
--- a/doc/out/pixi_list.js.html
+++ b/doc/out/pixi_list.js.html
@@ -1834,7 +1834,7 @@ export default class List extends PIXI.Container {
diff --git a/doc/out/pixi_message.js.html b/doc/out/pixi_message.js.html
index e9e2715..cc28e19 100644
--- a/doc/out/pixi_message.js.html
+++ b/doc/out/pixi_message.js.html
@@ -1583,7 +1583,7 @@ export default class Message extends InteractivePopup {
diff --git a/doc/out/pixi_modal.js.html b/doc/out/pixi_modal.js.html
index 6e9de34..4037f1c 100644
--- a/doc/out/pixi_modal.js.html
+++ b/doc/out/pixi_modal.js.html
@@ -1664,7 +1664,7 @@ export default class Modal extends PIXI.Container {
diff --git a/doc/out/pixi_popup.js.html b/doc/out/pixi_popup.js.html
index 3a876bc..8ffc8b3 100644
--- a/doc/out/pixi_popup.js.html
+++ b/doc/out/pixi_popup.js.html
@@ -1674,7 +1674,7 @@ export default class Popup extends InteractivePopup {
diff --git a/doc/out/pixi_popupmenu.js.html b/doc/out/pixi_popupmenu.js.html
index 63c6813..94fe65f 100644
--- a/doc/out/pixi_popupmenu.js.html
+++ b/doc/out/pixi_popupmenu.js.html
@@ -1577,7 +1577,7 @@ export default class PopupMenu extends Popup {
diff --git a/doc/out/pixi_progress.js.html b/doc/out/pixi_progress.js.html
index ff6cea3..2376918 100644
--- a/doc/out/pixi_progress.js.html
+++ b/doc/out/pixi_progress.js.html
@@ -1759,7 +1759,7 @@ export default class Progress extends PIXI.Container {
diff --git a/doc/out/pixi_scrollview.js.html b/doc/out/pixi_scrollview.js.html
index 10c9c23..85329d7 100644
--- a/doc/out/pixi_scrollview.js.html
+++ b/doc/out/pixi_scrollview.js.html
@@ -1518,7 +1518,7 @@ export default class Scrollview extends Scrollbox {
diff --git a/doc/out/pixi_slider.js.html b/doc/out/pixi_slider.js.html
index d8ea763..6552454 100644
--- a/doc/out/pixi_slider.js.html
+++ b/doc/out/pixi_slider.js.html
@@ -1923,7 +1923,7 @@ export default class Slider extends PIXI.Container {
diff --git a/doc/out/pixi_switch.js.html b/doc/out/pixi_switch.js.html
index c00acea..1849a5c 100644
--- a/doc/out/pixi_switch.js.html
+++ b/doc/out/pixi_switch.js.html
@@ -1977,7 +1977,7 @@ export default class Switch extends PIXI.Container {
diff --git a/doc/out/pixi_theme.js.html b/doc/out/pixi_theme.js.html
index e46a5b2..d6a5eb3 100644
--- a/doc/out/pixi_theme.js.html
+++ b/doc/out/pixi_theme.js.html
@@ -1718,7 +1718,7 @@ export class ThemeRed extends Theme {
diff --git a/doc/out/pixi_tooltip.js.html b/doc/out/pixi_tooltip.js.html
index b6ac906..b7f9f11 100644
--- a/doc/out/pixi_tooltip.js.html
+++ b/doc/out/pixi_tooltip.js.html
@@ -1611,7 +1611,7 @@ export default class Tooltip extends AbstractPopup {
diff --git a/doc/out/pixi_volatile.js.html b/doc/out/pixi_volatile.js.html
index 6369efc..d965c24 100644
--- a/doc/out/pixi_volatile.js.html
+++ b/doc/out/pixi_volatile.js.html
@@ -1615,7 +1615,7 @@ export default class Volatile {
diff --git a/doc/out/uitest.js.html b/doc/out/uitest.js.html
index 8c88d2f..39b2860 100644
--- a/doc/out/uitest.js.html
+++ b/doc/out/uitest.js.html
@@ -2466,7 +2466,7 @@ class Event {
diff --git a/lib/pixi/deepzoom/loader.js b/lib/pixi/deepzoom/loader.js
index 4e0ab49..5640441 100644
--- a/lib/pixi/deepzoom/loader.js
+++ b/lib/pixi/deepzoom/loader.js
@@ -88,7 +88,7 @@ export class PIXITileLoader extends TileLoader {
this.loader.on('load', this._onLoaded.bind(this))
this.loader.on('error', this._onError.bind(this))
if (compression) {
- this.loader.pre(PIXI.compressedTextures.imageParser())
+ this.loader.use(PIXI.compressedTextures.ImageParser.use)
}
}
diff --git a/lib/scatter.js b/lib/scatter.js
index d69844d..671c877 100644
--- a/lib/scatter.js
+++ b/lib/scatter.js
@@ -898,7 +898,14 @@ export class DOMScatterContainer {
*/
constructor(
element,
- { stopEvents = 'auto', claimEvents = true, useCapture = true, capturePointerEvents = true, touchAction = 'none', debugCanvas = null } = {}
+ {
+ stopEvents = 'auto',
+ claimEvents = true,
+ useCapture = true,
+ capturePointerEvents = true,
+ touchAction = 'none',
+ debugCanvas = null
+ } = {}
) {
this.onCapture = null
this.element = element
diff --git a/package-lock.json b/package-lock.json
index 8d78f96..8971ae5 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "iwmlib",
- "version": "1.0.16",
+ "version": "1.1.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {