From 2a11f02bd219df39bc98fba6d62f85ee59fc5468 Mon Sep 17 00:00:00 2001 From: Uwe Oestermeier Date: Wed, 10 Jul 2019 14:29:44 +0200 Subject: [PATCH] Added missing update of dist script. --- dist/iwmlib.pixi.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/dist/iwmlib.pixi.js b/dist/iwmlib.pixi.js index 4a966b9..95a8876 100644 --- a/dist/iwmlib.pixi.js +++ b/dist/iwmlib.pixi.js @@ -6053,6 +6053,10 @@ window.Capabilities = Capabilities; window.CapabilitiesTests = CapabilitiesTests; + /** Basic class for poppable elements that need to be closed as soon as one poppable is + * shown. + */ + /* eslint-disable no-unused-vars */ /** * A base class for scatter specific events. @@ -12628,6 +12632,9 @@ onMove(event, interaction) { let delta = interaction.delta(); + if (delta == null) { + return + } this.scroll += delta.x; while (this.deltas.length > 10) { this.deltas.pop(0); @@ -14863,7 +14870,7 @@ * @extends Popup * @see {@link https://www.iwm-tuebingen.de/iwmbrowser/lib/pixi/popupmenu.html|DocTest} */ - class PopupMenu extends Popup { + class PopupMenu$1 extends Popup { /** * Creates an instance of a PopupMenu. @@ -15512,7 +15519,7 @@ window.Stylus = Stylus; window.Switch = Switch; window.Popup = Popup; - window.PopupMenu = PopupMenu; + window.PopupMenu = PopupMenu$1; window.Modal = Modal; window.Volatile = Volatile; window.Message = Message;