Merge branch 'master' of gitea.iwm-tuebingen.de:IWMBrowser/iwmlib
This commit is contained in:
		
						commit
						42539c9d95
					
				
							
								
								
									
										6
									
								
								dist/iwmlib.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								dist/iwmlib.js
									
									
									
									
										vendored
									
									
								
							@ -5459,7 +5459,7 @@
 | 
				
			|||||||
                            */
 | 
					                            */
 | 
				
			||||||
                        if (nearestNode.tagName == 'svg') {
 | 
					                        if (nearestNode.tagName == 'svg') {
 | 
				
			||||||
                            let handler = this.tapNodes.get(nearestNode);
 | 
					                            let handler = this.tapNodes.get(nearestNode);
 | 
				
			||||||
                            console.log("Clicking beneath SVG: to be done", handler);
 | 
					                            console.log("Clicking near SVG: to be done", handler);
 | 
				
			||||||
                            if (this.triggerSVGClicks)
 | 
					                            if (this.triggerSVGClicks)
 | 
				
			||||||
                                nearestNode.dispatchEvent(new Event('click'));
 | 
					                                nearestNode.dispatchEvent(new Event('click'));
 | 
				
			||||||
                            return
 | 
					                            return
 | 
				
			||||||
@ -7477,8 +7477,8 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
            // MouseEvent
 | 
					            // MouseEvent
 | 
				
			||||||
            const mouseEventOpts = {
 | 
					            const mouseEventOpts = {
 | 
				
			||||||
                screenX: window.screenX + target.offsetLeft + position.x,
 | 
					                screenX: window.screenX + (target.offsetLeft || 0) + position.x,
 | 
				
			||||||
                screenY: window.screenY + target.offsetTop + position.y,
 | 
					                screenY: window.screenY + (target.offsetTop || 0) + position.y,
 | 
				
			||||||
                clientX: rect.x + position.x,
 | 
					                clientX: rect.x + position.x,
 | 
				
			||||||
                clientY: rect.y + position.y,
 | 
					                clientY: rect.y + position.y,
 | 
				
			||||||
                ctrlKey: false,
 | 
					                ctrlKey: false,
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										10
									
								
								dist/iwmlib.pixi.js
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										10
									
								
								dist/iwmlib.pixi.js
									
									
									
									
										vendored
									
									
								
							@ -6053,10 +6053,6 @@
 | 
				
			|||||||
    window.Capabilities = Capabilities;
 | 
					    window.Capabilities = Capabilities;
 | 
				
			||||||
    window.CapabilitiesTests = CapabilitiesTests;
 | 
					    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 */
 | 
					    /* eslint-disable no-unused-vars */
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
     * A base class for scatter specific events.
 | 
					     * A base class for scatter specific events.
 | 
				
			||||||
@ -7224,7 +7220,7 @@
 | 
				
			|||||||
                            */
 | 
					                            */
 | 
				
			||||||
                        if (nearestNode.tagName == 'svg') {
 | 
					                        if (nearestNode.tagName == 'svg') {
 | 
				
			||||||
                            let handler = this.tapNodes.get(nearestNode);
 | 
					                            let handler = this.tapNodes.get(nearestNode);
 | 
				
			||||||
                            console.log("Clicking beneath SVG: to be done", handler);
 | 
					                            console.log("Clicking near SVG: to be done", handler);
 | 
				
			||||||
                            if (this.triggerSVGClicks)
 | 
					                            if (this.triggerSVGClicks)
 | 
				
			||||||
                                nearestNode.dispatchEvent(new Event('click'));
 | 
					                                nearestNode.dispatchEvent(new Event('click'));
 | 
				
			||||||
                            return
 | 
					                            return
 | 
				
			||||||
@ -14867,7 +14863,7 @@
 | 
				
			|||||||
     * @extends Popup
 | 
					     * @extends Popup
 | 
				
			||||||
     * @see {@link https://www.iwm-tuebingen.de/iwmbrowser/lib/pixi/popupmenu.html|DocTest}
 | 
					     * @see {@link https://www.iwm-tuebingen.de/iwmbrowser/lib/pixi/popupmenu.html|DocTest}
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    class PopupMenu$1 extends Popup {
 | 
					    class PopupMenu extends Popup {
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        /**
 | 
					        /**
 | 
				
			||||||
         * Creates an instance of a PopupMenu.
 | 
					         * Creates an instance of a PopupMenu.
 | 
				
			||||||
@ -15516,7 +15512,7 @@
 | 
				
			|||||||
    window.Stylus = Stylus;
 | 
					    window.Stylus = Stylus;
 | 
				
			||||||
    window.Switch = Switch;
 | 
					    window.Switch = Switch;
 | 
				
			||||||
    window.Popup = Popup;
 | 
					    window.Popup = Popup;
 | 
				
			||||||
    window.PopupMenu = PopupMenu$1;
 | 
					    window.PopupMenu = PopupMenu;
 | 
				
			||||||
    window.Modal = Modal;
 | 
					    window.Modal = Modal;
 | 
				
			||||||
    window.Volatile = Volatile;
 | 
					    window.Volatile = Volatile;
 | 
				
			||||||
    window.Message = Message;
 | 
					    window.Message = Message;
 | 
				
			||||||
 | 
				
			|||||||
@ -20,4 +20,3 @@ This is the JavaScript API documentation of the IWM Browser JavaScript classes.
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
- [PixiJS](http://www.pixijs.com)
 | 
					- [PixiJS](http://www.pixijs.com)
 | 
				
			||||||
- [Greensock](https://greensock.com) with all Plugins
 | 
					- [Greensock](https://greensock.com) with all Plugins
 | 
				
			||||||
- [D3](https://d3js.org)
 | 
					 | 
				
			||||||
 | 
				
			|||||||
@ -2912,7 +2912,7 @@ a string, a number or a PIXI.Text object.</p>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2368,7 +2368,7 @@ a string, a number or a PIXI.Text object.</p>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1792,7 +1792,7 @@ app.scene.filters = [blurFilter]</code></pre>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1465,7 +1465,7 @@
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_button.js.html#line109">button.js:109</a>
 | 
					            <a href="pixi_button.js.html#line110">button.js:110</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3369,7 +3369,7 @@ the tint property of the icon sprite.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_button.js.html#line193">button.js:193</a>
 | 
					            <a href="pixi_button.js.html#line194">button.js:194</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3493,7 +3493,7 @@ the tint property of the icon sprite.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_button.js.html#line595">button.js:595</a>
 | 
					            <a href="pixi_button.js.html#line597">button.js:597</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3598,7 +3598,7 @@ the tint property of the icon sprite.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_button.js.html#line350">button.js:350</a>
 | 
					            <a href="pixi_button.js.html#line352">button.js:352</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3703,7 +3703,7 @@ the tint property of the icon sprite.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_button.js.html#line578">button.js:578</a>
 | 
					            <a href="pixi_button.js.html#line580">button.js:580</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3810,7 +3810,7 @@ the tint property of the icon sprite.</p>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -3206,7 +3206,7 @@ app.scene.addChild(buttonGroup)</code></pre>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1469,7 +1469,7 @@ more detailed tiles at the larger level as fast as possible.</p></div>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line351">image.js:351</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line338">image.js:338</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -1922,7 +1922,7 @@ Adds a PIXI.Container if necessary.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line608">image.js:608</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line596">image.js:596</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2000,7 +2000,7 @@ rect.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line837">image.js:837</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line825">image.js:825</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2152,7 +2152,7 @@ rect.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line1076">image.js:1076</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line1067">image.js:1067</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2228,7 +2228,7 @@ rect.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line520">image.js:520</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line508">image.js:508</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2372,7 +2372,7 @@ rect.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line636">image.js:636</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line624">image.js:624</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2547,7 +2547,7 @@ rect.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line1014">image.js:1014</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line1002">image.js:1002</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2668,7 +2668,7 @@ rect.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line617">image.js:617</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line605">image.js:605</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2746,7 +2746,7 @@ the also overwritten _calculateBounds method.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line743">image.js:743</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line731">image.js:731</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2921,7 +2921,7 @@ the also overwritten _calculateBounds method.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line1087">image.js:1087</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line1079">image.js:1079</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2997,7 +2997,7 @@ the also overwritten _calculateBounds method.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line974">image.js:974</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line962">image.js:962</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3073,7 +3073,7 @@ the also overwritten _calculateBounds method.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line989">image.js:989</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line977">image.js:977</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3150,7 +3150,7 @@ visible quadTrees</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line920">image.js:920</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line908">image.js:908</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3272,7 +3272,7 @@ be reused.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line960">image.js:960</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line948">image.js:948</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3348,7 +3348,7 @@ be reused.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line893">image.js:893</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line881">image.js:881</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3469,7 +3469,7 @@ be reused.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line870">image.js:870</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line858">image.js:858</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3620,7 +3620,7 @@ a new Tiles layer if necessary</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line508">image.js:508</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line496">image.js:496</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3741,7 +3741,7 @@ a new Tiles layer if necessary</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line499">image.js:499</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line487">image.js:487</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3862,7 +3862,7 @@ a new Tiles layer if necessary</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line670">image.js:670</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line658">image.js:658</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -4076,7 +4076,7 @@ a new Tiles layer if necessary</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line771">image.js:771</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line759">image.js:759</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -4220,7 +4220,7 @@ a new Tiles layer if necessary</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line789">image.js:789</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line777">image.js:777</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -4413,7 +4413,7 @@ Optional parameter:</p></td>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line401">image.js:401</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line389">image.js:389</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -4560,7 +4560,7 @@ layer.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line437">image.js:437</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line425">image.js:425</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -4690,7 +4690,7 @@ Can be overwritten in subclasses.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line627">image.js:627</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line615">image.js:615</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -4796,7 +4796,7 @@ large images.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line944">image.js:944</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line932">image.js:932</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -4872,7 +4872,7 @@ large images.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line1029">image.js:1029</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line1017">image.js:1017</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -5090,7 +5090,7 @@ i.e. after loading a single tile</p></td>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1466,7 +1466,7 @@ height and width of the overall image, overlap, and image type.</p></div>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line48">image.js:48</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line35">image.js:35</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -1631,7 +1631,7 @@ height and width of the overall image, overlap, and image type.</p></div>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line238">image.js:238</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line225">image.js:225</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -1781,7 +1781,7 @@ height and width of the overall image, overlap, and image type.</p></div>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line94">image.js:94</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line81">image.js:81</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -1931,7 +1931,7 @@ height and width of the overall image, overlap, and image type.</p></div>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line105">image.js:105</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line92">image.js:92</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2081,7 +2081,7 @@ height and width of the overall image, overlap, and image type.</p></div>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line80">image.js:80</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line67">image.js:67</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2231,7 +2231,7 @@ height and width of the overall image, overlap, and image type.</p></div>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line227">image.js:227</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line214">image.js:214</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2405,7 +2405,7 @@ on completion.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line196">image.js:196</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line183">image.js:183</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2603,7 +2603,7 @@ on completion.</p>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1837,7 +1837,7 @@
 | 
				
			|||||||
            
 | 
					            
 | 
				
			||||||
                <td class="default">
 | 
					                <td class="default">
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                    Sine.easeOut
 | 
					                    Power1.easeOut
 | 
				
			||||||
                
 | 
					                
 | 
				
			||||||
                </td>
 | 
					                </td>
 | 
				
			||||||
            
 | 
					            
 | 
				
			||||||
@ -2506,7 +2506,7 @@ front.on('click', event => flippable.toggle())</code></pre>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1553,7 +1553,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1755,7 +1755,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2337,7 +2337,7 @@ a string, a number or a PIXI.Text object.</p>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1555,7 +1555,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2620,7 +2620,7 @@ than wanted</p>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2579,7 +2579,7 @@ app.scene.addChild(list)</code></pre>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2435,7 +2435,7 @@ a string, a number or a PIXI.Text object.</p>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1783,7 +1783,7 @@ like Popup, Message...</p></div>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1783,7 +1783,7 @@ like Popup, Message...</p></div>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2336,7 +2336,7 @@ a string or a PIXI.Text object.</p>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1783,7 +1783,7 @@ like Popup, Message...</p></div>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1783,7 +1783,7 @@ like Popup, Message...</p></div>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -5737,7 +5737,7 @@ rejected with an error.</td>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2330,7 +2330,7 @@ a string, a number or a PIXI.Text object.</p>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1783,7 +1783,7 @@ like Popup, Message...</p></div>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2384,7 +2384,7 @@ a string, a number or a PIXI.Text object.</p>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1783,7 +1783,7 @@ like Popup, Message...</p></div>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1783,7 +1783,7 @@ like Popup, Message...</p></div>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1783,7 +1783,7 @@ like Popup, Message...</p></div>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1783,7 +1783,7 @@ like Popup, Message...</p></div>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1783,7 +1783,7 @@ like Popup, Message...</p></div>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2869,7 +2869,7 @@ app.scene.addChild(progress)</code></pre>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1594,7 +1594,7 @@ app.loader
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_scrollview.js.html#line69">scrollview.js:69</a>
 | 
					            <a href="pixi_scrollview.js.html#line61">scrollview.js:61</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -1701,7 +1701,7 @@ app.loader
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2960,7 +2960,7 @@ app.scene.addChild(slider)</code></pre>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -3390,7 +3390,7 @@ app.scene.addChild(switch1)</code></pre>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1684,7 +1684,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -3159,7 +3159,7 @@ const app = new PIXIApp({
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1580,7 +1580,7 @@ const app = new PIXIApp({
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1592,7 +1592,7 @@ const app = new PIXIApp({
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1592,7 +1592,7 @@ const app = new PIXIApp({
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1472,7 +1472,7 @@ the memory pressure.</p></div>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line278">image.js:278</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line265">image.js:265</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -1676,7 +1676,7 @@ the memory pressure.</p></div>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line321">image.js:321</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line308">image.js:308</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -1844,7 +1844,7 @@ and west flags to address nw, ne, sw, and se.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line293">image.js:293</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line280">image.js:280</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -1921,7 +1921,7 @@ an indicator of tiles to free.</p>
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_deepzoom_image.js.html#line307">image.js:307</a>
 | 
					            <a href="pixi_deepzoom_image.js.html#line294">image.js:294</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2044,7 +2044,7 @@ an indicator of tiles to free.</p>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2506,7 +2506,7 @@ a string, a number or a PIXI.Text object.</p>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -4177,7 +4177,7 @@ test.start()</code></pre>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2093,7 +2093,7 @@ app.scene.addChild(button)</code></pre>
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1655,7 +1655,7 @@
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_button.js.html#line8">button.js:8</a>
 | 
					            <a href="pixi_button.js.html#line9">button.js:9</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -1943,7 +1943,7 @@
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_button.js.html#line24">button.js:24</a>
 | 
					            <a href="pixi_button.js.html#line25">button.js:25</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -2231,7 +2231,7 @@
 | 
				
			|||||||
    
 | 
					    
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
        <div class="tag-source">
 | 
					        <div class="tag-source">
 | 
				
			||||||
            <a href="pixi_button.js.html#line16">button.js:16</a>
 | 
					            <a href="pixi_button.js.html#line17">button.js:17</a>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
        
 | 
					        
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
@ -3314,7 +3314,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1467,7 +1467,6 @@
 | 
				
			|||||||
<ul>
 | 
					<ul>
 | 
				
			||||||
<li><a target="_blank" href="http://www.pixijs.com">PixiJS</a></li>
 | 
					<li><a target="_blank" href="http://www.pixijs.com">PixiJS</a></li>
 | 
				
			||||||
<li><a target="_blank" href="https://greensock.com">Greensock</a> with all Plugins</li>
 | 
					<li><a target="_blank" href="https://greensock.com">Greensock</a> with all Plugins</li>
 | 
				
			||||||
<li><a target="_blank" href="https://d3js.org">D3</a></li>
 | 
					 | 
				
			||||||
</ul></article>
 | 
					</ul></article>
 | 
				
			||||||
    </section>
 | 
					    </section>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1480,7 +1479,7 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a target="_blank" href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1808,7 +1808,7 @@ export default class AbstractPopup extends PIXI.Graphics {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2179,7 +2179,7 @@ class FpsDisplay extends PIXI.Graphics {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1560,7 +1560,7 @@ export default class Badge extends AbstractPopup {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1714,7 +1714,7 @@ class TiltShiftYFilter extends TiltShiftAxisFilter {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1438,7 +1438,8 @@
 | 
				
			|||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </header>
 | 
					        </header>
 | 
				
			||||||
        <article>
 | 
					        <article>
 | 
				
			||||||
            <pre id="source-code" class="prettyprint source linenums"><code>import Theme from './theme.js'
 | 
					            <pre id="source-code" class="prettyprint source linenums"><code>/* global PIXI TweenLite */
 | 
				
			||||||
 | 
					import Theme from './theme.js'
 | 
				
			||||||
import Tooltip from './tooltip.js'
 | 
					import Tooltip from './tooltip.js'
 | 
				
			||||||
import Badge from './badge.js'
 | 
					import Badge from './badge.js'
 | 
				
			||||||
import Events from '../events.js'
 | 
					import Events from '../events.js'
 | 
				
			||||||
@ -1600,7 +1601,7 @@ export default class Button extends PIXI.Container {
 | 
				
			|||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if (this.opts.style === 'link') {
 | 
					        if (this.opts.style === 'link') {
 | 
				
			||||||
            Object.assign(this.opts, {strokeAlpha: 0, strokeActiveAlpha: 0, fillAlpha: 0, fillActiveAlpha: 0})
 | 
					            Object.assign(this.opts, { strokeAlpha: 0, strokeActiveAlpha: 0, fillAlpha: 0, fillActiveAlpha: 0 })
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        this._active = null
 | 
					        this._active = null
 | 
				
			||||||
@ -1672,7 +1673,7 @@ export default class Button extends PIXI.Container {
 | 
				
			|||||||
        //-----------------
 | 
					        //-----------------
 | 
				
			||||||
        this.button.on('pointerover', e => {
 | 
					        this.button.on('pointerover', e => {
 | 
				
			||||||
            this.capture(e)
 | 
					            this.capture(e)
 | 
				
			||||||
            TweenLite.to([this.button, this.content], this.theme.fast, {alpha: .83, overwrite: 'none'})
 | 
					            TweenLite.to([this.button, this.content], this.theme.fast, { alpha: .83, overwrite: 'none' })
 | 
				
			||||||
        })
 | 
					        })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        this.button.on('pointermove', e => {
 | 
					        this.button.on('pointermove', e => {
 | 
				
			||||||
@ -1681,12 +1682,13 @@ export default class Button extends PIXI.Container {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        this.button.on('pointerout', e => {
 | 
					        this.button.on('pointerout', e => {
 | 
				
			||||||
            this.capture(e)
 | 
					            this.capture(e)
 | 
				
			||||||
            TweenLite.to([this.button, this.content], this.theme.fast, {alpha: 1, overwrite: 'none'})
 | 
					            TweenLite.to([this.button, this.content], this.theme.fast, { alpha: 1, overwrite: 'none' })
 | 
				
			||||||
        })
 | 
					        })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        // eslint-disable-next-line no-unused-vars
 | 
				
			||||||
        this.button.on('pointerdown', e => {
 | 
					        this.button.on('pointerdown', e => {
 | 
				
			||||||
            //this.capture(e)
 | 
					            //this.capture(e)
 | 
				
			||||||
            TweenLite.to([this.button, this.content], this.theme.fast, {alpha: .7, overwrite: 'none'})
 | 
					            TweenLite.to([this.button, this.content], this.theme.fast, { alpha: .7, overwrite: 'none' })
 | 
				
			||||||
        })
 | 
					        })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        this.button.on('pointerup', e => {
 | 
					        this.button.on('pointerup', e => {
 | 
				
			||||||
@ -1699,7 +1701,7 @@ export default class Button extends PIXI.Container {
 | 
				
			|||||||
                this.opts.action.call(this, e, this)
 | 
					                this.opts.action.call(this, e, this)
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            TweenLite.to([this.button, this.content], this.theme.fast, {alpha: .83, overwrite: 'none'})
 | 
					            TweenLite.to([this.button, this.content], this.theme.fast, { alpha: .83, overwrite: 'none' })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            if (this.opts.type === 'checkbox') {
 | 
					            if (this.opts.type === 'checkbox') {
 | 
				
			||||||
                this.active = !this.active
 | 
					                this.active = !this.active
 | 
				
			||||||
@ -1722,9 +1724,9 @@ export default class Button extends PIXI.Container {
 | 
				
			|||||||
        //-----------------
 | 
					        //-----------------
 | 
				
			||||||
        if (this.opts.tooltip) {
 | 
					        if (this.opts.tooltip) {
 | 
				
			||||||
            if (typeof this.opts.tooltip === 'string') {
 | 
					            if (typeof this.opts.tooltip === 'string') {
 | 
				
			||||||
                this.tooltip = new Tooltip({object: this, content: this.opts.tooltip})
 | 
					                this.tooltip = new Tooltip({ object: this, content: this.opts.tooltip })
 | 
				
			||||||
            } else {
 | 
					            } else {
 | 
				
			||||||
                this.opts.tooltip = Object.assign({}, {object: this}, this.opts.tooltip)
 | 
					                this.opts.tooltip = Object.assign({}, { object: this }, this.opts.tooltip)
 | 
				
			||||||
                this.tooltip = new Tooltip(this.opts.tooltip)
 | 
					                this.tooltip = new Tooltip(this.opts.tooltip)
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
@ -1739,7 +1741,7 @@ export default class Button extends PIXI.Container {
 | 
				
			|||||||
                offsetTop: 0
 | 
					                offsetTop: 0
 | 
				
			||||||
            })
 | 
					            })
 | 
				
			||||||
            if (typeof this.opts.badge === 'string') {
 | 
					            if (typeof this.opts.badge === 'string') {
 | 
				
			||||||
                opts = Object.assign(opts, {content: this.opts.badge})
 | 
					                opts = Object.assign(opts, { content: this.opts.badge })
 | 
				
			||||||
            } else {
 | 
					            } else {
 | 
				
			||||||
                opts = Object.assign(opts, this.opts.badge)
 | 
					                opts = Object.assign(opts, this.opts.badge)
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
@ -1747,25 +1749,25 @@ export default class Button extends PIXI.Container {
 | 
				
			|||||||
            const badge = new Badge(opts)
 | 
					            const badge = new Badge(opts)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            switch (opts.align) {
 | 
					            switch (opts.align) {
 | 
				
			||||||
                case 'left':
 | 
					            case 'left':
 | 
				
			||||||
                    badge.x = this.x - badge.width / 2 + opts.offsetLeft
 | 
					                badge.x = this.x - badge.width / 2 + opts.offsetLeft
 | 
				
			||||||
                    break
 | 
					                break
 | 
				
			||||||
                case 'center':
 | 
					            case 'center':
 | 
				
			||||||
                    badge.x = this.x + this.width / 2 - badge.width / 2 + opts.offsetLeft
 | 
					                badge.x = this.x + this.width / 2 - badge.width / 2 + opts.offsetLeft
 | 
				
			||||||
                    break
 | 
					                break
 | 
				
			||||||
                case 'right':
 | 
					            case 'right':
 | 
				
			||||||
                    badge.x = this.x + this.width - badge.width / 2 + opts.offsetLeft
 | 
					                badge.x = this.x + this.width - badge.width / 2 + opts.offsetLeft
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            switch (opts.verticalAlign) {
 | 
					            switch (opts.verticalAlign) {
 | 
				
			||||||
                case 'top':
 | 
					            case 'top':
 | 
				
			||||||
                    badge.y = this.y - badge.height / 2 + opts.offsetTop
 | 
					                badge.y = this.y - badge.height / 2 + opts.offsetTop
 | 
				
			||||||
                    break
 | 
					                break
 | 
				
			||||||
                case 'middle':
 | 
					            case 'middle':
 | 
				
			||||||
                    badge.y = this.y + this.height / 2 - badge.height / 2 + opts.offsetTop
 | 
					                badge.y = this.y + this.height / 2 - badge.height / 2 + opts.offsetTop
 | 
				
			||||||
                    break
 | 
					                break
 | 
				
			||||||
                case 'bottom':
 | 
					            case 'bottom':
 | 
				
			||||||
                    badge.y = this.y + this.height - badge.height / 2 + opts.offsetTop
 | 
					                badge.y = this.y + this.height - badge.height / 2 + opts.offsetTop
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            this.addChild(badge)
 | 
					            this.addChild(badge)
 | 
				
			||||||
@ -1875,15 +1877,15 @@ export default class Button extends PIXI.Container {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        for (let child of this.content.children) {
 | 
					        for (let child of this.content.children) {
 | 
				
			||||||
            switch (this.opts.verticalAlign) {
 | 
					            switch (this.opts.verticalAlign) {
 | 
				
			||||||
                case 'top':
 | 
					            case 'top':
 | 
				
			||||||
                    child.y = 0
 | 
					                child.y = 0
 | 
				
			||||||
                    break
 | 
					                break
 | 
				
			||||||
                case 'middle':
 | 
					            case 'middle':
 | 
				
			||||||
                    child.y = this.content.height / 2 - child.height / 2
 | 
					                child.y = this.content.height / 2 - child.height / 2
 | 
				
			||||||
                    break
 | 
					                break
 | 
				
			||||||
                case 'bottom':
 | 
					            case 'bottom':
 | 
				
			||||||
                    child.y = this.content.height - child.height
 | 
					                child.y = this.content.height - child.height
 | 
				
			||||||
                    break
 | 
					                break
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -1900,27 +1902,27 @@ export default class Button extends PIXI.Container {
 | 
				
			|||||||
    layoutContent() {
 | 
					    layoutContent() {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        switch (this.opts.align) {
 | 
					        switch (this.opts.align) {
 | 
				
			||||||
            case 'left':
 | 
					        case 'left':
 | 
				
			||||||
                this.content.x = this.opts.padding
 | 
					            this.content.x = this.opts.padding
 | 
				
			||||||
                break
 | 
					            break
 | 
				
			||||||
            case 'center':
 | 
					        case 'center':
 | 
				
			||||||
                this.content.x = ((this._width - this.content.width) / 2)
 | 
					            this.content.x = ((this._width - this.content.width) / 2)
 | 
				
			||||||
                break
 | 
					            break
 | 
				
			||||||
            case 'right':
 | 
					        case 'right':
 | 
				
			||||||
                this.content.x = this._width - this.opts.padding - this.content.width
 | 
					            this.content.x = this._width - this.opts.padding - this.content.width
 | 
				
			||||||
                break
 | 
					            break
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        switch (this.opts.verticalAlign) {
 | 
					        switch (this.opts.verticalAlign) {
 | 
				
			||||||
            case 'top':
 | 
					        case 'top':
 | 
				
			||||||
                this.content.y = this.opts.padding
 | 
					            this.content.y = this.opts.padding
 | 
				
			||||||
                break
 | 
					            break
 | 
				
			||||||
            case 'middle':
 | 
					        case 'middle':
 | 
				
			||||||
                this.content.y = (this._height - this.content.height) / 2
 | 
					            this.content.y = (this._height - this.content.height) / 2
 | 
				
			||||||
                break
 | 
					            break
 | 
				
			||||||
            case 'bottom':
 | 
					        case 'bottom':
 | 
				
			||||||
                this.content.y = this._height - this.opts.padding - this.content.height
 | 
					            this.content.y = this._height - this.opts.padding - this.content.height
 | 
				
			||||||
                break
 | 
					            break
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return this
 | 
					        return this
 | 
				
			||||||
@ -2118,7 +2120,7 @@ export default class Button extends PIXI.Container {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1797,7 +1797,7 @@ export default class ButtonGroup extends PIXI.Graphics {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1440,26 +1440,13 @@
 | 
				
			|||||||
        <article>
 | 
					        <article>
 | 
				
			||||||
            <pre id="source-code" class="prettyprint source linenums"><code>import { Capabilities } from '../../capabilities.js'
 | 
					            <pre id="source-code" class="prettyprint source linenums"><code>import { Capabilities } from '../../capabilities.js'
 | 
				
			||||||
import { Points } from '../../utils.js'
 | 
					import { Points } from '../../utils.js'
 | 
				
			||||||
import { deepZoomTileCache } from './tile.js'
 | 
					import Tile from './tile.js'
 | 
				
			||||||
import { Tiles } from './tiles.js'
 | 
					import { Tiles } from './tiles.js'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
function isEven(n) {
 | 
					function isEven(n) {
 | 
				
			||||||
    return n % 2 == 0
 | 
					    return n % 2 == 0
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					 | 
				
			||||||
function printTileCacheInfos() {
 | 
					 | 
				
			||||||
    let references = new Map()
 | 
					 | 
				
			||||||
    let multiples = 0
 | 
					 | 
				
			||||||
    for (let [url, tiles] of deepZoomTileCache.entries()) {
 | 
					 | 
				
			||||||
        let count = tiles.size
 | 
					 | 
				
			||||||
        references.set(url, count)
 | 
					 | 
				
			||||||
        if (count > 1) {
 | 
					 | 
				
			||||||
            multiples += 1
 | 
					 | 
				
			||||||
        }
 | 
					 | 
				
			||||||
    }
 | 
					 | 
				
			||||||
    console.log({ multiples, references })
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * A utility class that holds information typically provided by DZI files, i.e.
 | 
					 * A utility class that holds information typically provided by DZI files, i.e.
 | 
				
			||||||
 * height and width of the overall image, overlap, and image type.
 | 
					 * height and width of the overall image, overlap, and image type.
 | 
				
			||||||
@ -1797,7 +1784,7 @@ export class DeepZoomImage extends PIXI.Container {
 | 
				
			|||||||
            world = null,               // Defines the world bounds the images lives in
 | 
					            world = null,               // Defines the world bounds the images lives in
 | 
				
			||||||
            highResolution = true,
 | 
					            highResolution = true,
 | 
				
			||||||
            autoLoadTiles = true,
 | 
					            autoLoadTiles = true,
 | 
				
			||||||
            preferWorker = false,
 | 
					            useWorker = '',
 | 
				
			||||||
            minimumLevel = 0,
 | 
					            minimumLevel = 0,
 | 
				
			||||||
            alpha = 1,
 | 
					            alpha = 1,
 | 
				
			||||||
            app = window.app
 | 
					            app = window.app
 | 
				
			||||||
@ -1808,12 +1795,13 @@ export class DeepZoomImage extends PIXI.Container {
 | 
				
			|||||||
        this.debug = debug
 | 
					        this.debug = debug
 | 
				
			||||||
        this.shadow = shadow
 | 
					        this.shadow = shadow
 | 
				
			||||||
        this.world = world
 | 
					        this.world = world
 | 
				
			||||||
        this.preferWorker = preferWorker
 | 
					        this.useWorker = useWorker
 | 
				
			||||||
        this.resolution = highResolution
 | 
					        this.resolution = highResolution
 | 
				
			||||||
            ? Math.round(window.devicePixelRatio)
 | 
					            ? Math.round(window.devicePixelRatio)
 | 
				
			||||||
            : 1
 | 
					            : 1
 | 
				
			||||||
        this.alpha = alpha
 | 
					        this.alpha = alpha
 | 
				
			||||||
        this.fastLoads = 0
 | 
					        this.fastLoads = 0
 | 
				
			||||||
 | 
					        this.active = true
 | 
				
			||||||
        this.autoLoadTiles = autoLoadTiles
 | 
					        this.autoLoadTiles = autoLoadTiles
 | 
				
			||||||
        this.minimumLevel = minimumLevel
 | 
					        this.minimumLevel = minimumLevel
 | 
				
			||||||
        this.quadTrees = new Map() // url as keys, TileQuadNodes as values
 | 
					        this.quadTrees = new Map() // url as keys, TileQuadNodes as values
 | 
				
			||||||
@ -2085,9 +2073,9 @@ export class DeepZoomImage extends PIXI.Container {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    worldBounds() {
 | 
					    worldBounds() {
 | 
				
			||||||
        let viewBounds = this.app.scene.bounds
 | 
					        let viewBounds = this.app.scene.bounds || this.app.scene.getBounds() 
 | 
				
			||||||
        // Using getBounds extends visible scope after loading tiles and leads
 | 
					        // Using getBounds extends visible scope after loading tiles and leads
 | 
				
			||||||
        // to excessive loading
 | 
					        // to excessive loading. So we prefer bounds over getBounds()
 | 
				
			||||||
        if (this.world != null) {
 | 
					        if (this.world != null) {
 | 
				
			||||||
            let bounds = this.world.bounds
 | 
					            let bounds = this.world.bounds
 | 
				
			||||||
            let x = Math.max(-bounds.width, bounds.x)
 | 
					            let x = Math.max(-bounds.width, bounds.x)
 | 
				
			||||||
@ -2467,6 +2455,9 @@ export class DeepZoomImage extends PIXI.Container {
 | 
				
			|||||||
     * @param {boolean} debug - log debug infos
 | 
					     * @param {boolean} debug - log debug infos
 | 
				
			||||||
     */
 | 
					     */
 | 
				
			||||||
    transformed(event) {
 | 
					    transformed(event) {
 | 
				
			||||||
 | 
					        if (!this.active) {
 | 
				
			||||||
 | 
					            return
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
        let key = this.currentLevel.toString()
 | 
					        let key = this.currentLevel.toString()
 | 
				
			||||||
        let currentTiles = this.tileLayers[key]
 | 
					        let currentTiles = this.tileLayers[key]
 | 
				
			||||||
        if (typeof currentTiles == 'undefined') {
 | 
					        if (typeof currentTiles == 'undefined') {
 | 
				
			||||||
@ -2489,7 +2480,7 @@ export class DeepZoomImage extends PIXI.Container {
 | 
				
			|||||||
            this.ensureTiles(this.currentLevel, event.about)
 | 
					            this.ensureTiles(this.currentLevel, event.about)
 | 
				
			||||||
            return
 | 
					            return
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        
 | 
					
 | 
				
			||||||
        let level = this.levelForScale(event.scale)
 | 
					        let level = this.levelForScale(event.scale)
 | 
				
			||||||
        let newLevel = Math.max(level, this.minimumLevel)
 | 
					        let newLevel = Math.max(level, this.minimumLevel)
 | 
				
			||||||
        if (newLevel != this.currentLevel) {
 | 
					        if (newLevel != this.currentLevel) {
 | 
				
			||||||
@ -2514,6 +2505,7 @@ export class DeepZoomImage extends PIXI.Container {
 | 
				
			|||||||
   * @memberof DeepZoomImage
 | 
					   * @memberof DeepZoomImage
 | 
				
			||||||
   */
 | 
					   */
 | 
				
			||||||
    activate() {
 | 
					    activate() {
 | 
				
			||||||
 | 
					        this.active = true
 | 
				
			||||||
        this.destroyTilesAboveLevel(this.currentLevel)
 | 
					        this.destroyTilesAboveLevel(this.currentLevel)
 | 
				
			||||||
        this.ensureTiles(this.currentLevel, null)
 | 
					        this.ensureTiles(this.currentLevel, null)
 | 
				
			||||||
        //console.log("Activate Textures!", this.currentLevel)
 | 
					        //console.log("Activate Textures!", this.currentLevel)
 | 
				
			||||||
@ -2525,35 +2517,19 @@ export class DeepZoomImage extends PIXI.Container {
 | 
				
			|||||||
   * @memberof DeepZoomImage
 | 
					   * @memberof DeepZoomImage
 | 
				
			||||||
   */
 | 
					   */
 | 
				
			||||||
    deactivate() {
 | 
					    deactivate() {
 | 
				
			||||||
 | 
					        this.active = false
 | 
				
			||||||
        this.destroyAllTiles()
 | 
					        this.destroyAllTiles()
 | 
				
			||||||
        Object.keys(this.tileLayers).forEach(key => {
 | 
					 | 
				
			||||||
            this.destroyTiles(key)
 | 
					 | 
				
			||||||
        })
 | 
					 | 
				
			||||||
        this.tileContainer.destroy({ children: true })
 | 
					        this.tileContainer.destroy({ children: true })
 | 
				
			||||||
        printTileCacheInfos()
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    throwFinished() {
 | 
					    throwFinished() {
 | 
				
			||||||
        console.log("throwFinished")
 | 
					        //console.log("throwFinished")
 | 
				
			||||||
        let key = this.currentLevel.toString()
 | 
					        let key = this.currentLevel.toString()
 | 
				
			||||||
        let currentTiles = this.tileLayers[key]
 | 
					        let currentTiles = this.tileLayers[key]
 | 
				
			||||||
        if (typeof currentTiles == 'undefined') {
 | 
					        if (typeof currentTiles == 'undefined') {
 | 
				
			||||||
            return
 | 
					            return
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					 | 
				
			||||||
        this.ensureTiles(this.currentLevel)
 | 
					        this.ensureTiles(this.currentLevel)
 | 
				
			||||||
        // let all = new Set()
 | 
					 | 
				
			||||||
        // for (let tile of currentTiles.children) {
 | 
					 | 
				
			||||||
        //     all.add(tile.url)
 | 
					 | 
				
			||||||
        // }
 | 
					 | 
				
			||||||
        // let { centerCol, centerRow, needed } = this.neededTiles(currentTiles, this.currentLevel)
 | 
					 | 
				
			||||||
        // for (let [url, col, row] of needed) {
 | 
					 | 
				
			||||||
        //     all.delete(url)
 | 
					 | 
				
			||||||
        // }
 | 
					 | 
				
			||||||
        // for (let url of all) {
 | 
					 | 
				
			||||||
        //     currentTiles.destroyTileByUrl(url)
 | 
					 | 
				
			||||||
        // }
 | 
					 | 
				
			||||||
        // currentTiles.loader.loader.reset()
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
</code></pre>
 | 
					</code></pre>
 | 
				
			||||||
@ -2569,7 +2545,7 @@ export class DeepZoomImage extends PIXI.Container {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1496,7 +1496,7 @@ export default class Flippable extends PIXI.projection.Camera3d {
 | 
				
			|||||||
     * @param {boolean} [opts.shadow=false] - Should be a shadow been display during the animation?
 | 
					     * @param {boolean} [opts.shadow=false] - Should be a shadow been display during the animation?
 | 
				
			||||||
     * @param {numer} [opts.eulerX=0] - The shift of the x-axis during the animation.
 | 
					     * @param {numer} [opts.eulerX=0] - The shift of the x-axis during the animation.
 | 
				
			||||||
     * @param {numer} [opts.eulerY=0] - The shift of the y-axis during the animation.
 | 
					     * @param {numer} [opts.eulerY=0] - The shift of the y-axis during the animation.
 | 
				
			||||||
     * @param {GSAP.Ease} [opts.eulerEase=Sine.easeOut] - The ease of the shift.
 | 
					     * @param {GSAP.Ease} [opts.eulerEase=Power1.easeOut] - The ease of the shift.
 | 
				
			||||||
     * @param {boolean} [opts.useBackTransforms=false] - When set to true, the flip animation also animates to the transform parameters of the back-object.
 | 
					     * @param {boolean} [opts.useBackTransforms=false] - When set to true, the flip animation also animates to the transform parameters of the back-object.
 | 
				
			||||||
     * @param {GSAP.Ease} [opts.transformEase=Power2.easeOut] - The ease of the transform.
 | 
					     * @param {GSAP.Ease} [opts.transformEase=Power2.easeOut] - The ease of the transform.
 | 
				
			||||||
     * @param {numer} [opts.focus=800] - The value of the focus of the 3D camera (see pixi-projection).
 | 
					     * @param {numer} [opts.focus=800] - The value of the focus of the 3D camera (see pixi-projection).
 | 
				
			||||||
@ -1520,7 +1520,7 @@ export default class Flippable extends PIXI.projection.Camera3d {
 | 
				
			|||||||
            shadow: false,
 | 
					            shadow: false,
 | 
				
			||||||
            eulerX: 0,
 | 
					            eulerX: 0,
 | 
				
			||||||
            eulerY: 0,
 | 
					            eulerY: 0,
 | 
				
			||||||
            eulerEase: Sine.easeOut,
 | 
					            eulerEase: Power1.easeOut,
 | 
				
			||||||
            useBackTransforms: false,
 | 
					            useBackTransforms: false,
 | 
				
			||||||
            transformEase: Power2.easeOut,
 | 
					            transformEase: Power2.easeOut,
 | 
				
			||||||
            focus: 800,
 | 
					            focus: 800,
 | 
				
			||||||
@ -1892,7 +1892,7 @@ export default class Flippable extends PIXI.projection.Camera3d {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1865,7 +1865,7 @@ export class BitmapLabeledGraphics extends LabeledGraphics {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1832,7 +1832,7 @@ export default class List extends PIXI.Container {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1577,7 +1577,7 @@ export default class Message extends InteractivePopup {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1652,7 +1652,7 @@ export default class Modal extends PIXI.Container {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1664,7 +1664,7 @@ export default class Popup extends InteractivePopup {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1565,7 +1565,7 @@ export default class PopupMenu extends Popup {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1754,7 +1754,7 @@ export default class Progress extends PIXI.Container {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1478,14 +1478,6 @@ export default class Scrollview extends Scrollbox {
 | 
				
			|||||||
        super(opts)
 | 
					        super(opts)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        this.opts = opts
 | 
					        this.opts = opts
 | 
				
			||||||
 | 
					 | 
				
			||||||
        // setup
 | 
					 | 
				
			||||||
        //-----------------
 | 
					 | 
				
			||||||
        this.setup()
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        // layout
 | 
					 | 
				
			||||||
        //-----------------
 | 
					 | 
				
			||||||
        this.layout()
 | 
					 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
    
 | 
					    
 | 
				
			||||||
    /**
 | 
					    /**
 | 
				
			||||||
@ -1524,7 +1516,7 @@ export default class Scrollview extends Scrollbox {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1922,7 +1922,7 @@ export default class Slider extends PIXI.Container {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1959,7 +1959,7 @@ export default class Switch extends PIXI.Container {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1687,7 +1687,7 @@ export class ThemeRed extends Theme {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1606,7 +1606,7 @@ export default class Tooltip extends AbstractPopup {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -1612,7 +1612,7 @@ export default class Volatile {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -2355,8 +2355,8 @@ class Event {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        // MouseEvent
 | 
					        // MouseEvent
 | 
				
			||||||
        const mouseEventOpts = {
 | 
					        const mouseEventOpts = {
 | 
				
			||||||
            screenX: window.screenX + target.offsetLeft + position.x,
 | 
					            screenX: window.screenX + (target.offsetLeft || 0) + position.x,
 | 
				
			||||||
            screenY: window.screenY + target.offsetTop + position.y,
 | 
					            screenY: window.screenY + (target.offsetTop || 0) + position.y,
 | 
				
			||||||
            clientX: rect.x + position.x,
 | 
					            clientX: rect.x + position.x,
 | 
				
			||||||
            clientY: rect.y + position.y,
 | 
					            clientY: rect.y + position.y,
 | 
				
			||||||
            ctrlKey: false,
 | 
					            ctrlKey: false,
 | 
				
			||||||
@ -2416,7 +2416,7 @@ class Event {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        <footer class="content-size">
 | 
					        <footer class="content-size">
 | 
				
			||||||
            <div class="footer">
 | 
					            <div class="footer">
 | 
				
			||||||
                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Tue May 14 2019 14:29:52 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
					                Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.2</a> on Wed Jul 10 2019 11:54:25 GMT+0200 (Mitteleuropäische Sommerzeit)
 | 
				
			||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
        </footer>
 | 
					        </footer>
 | 
				
			||||||
    </div>
 | 
					    </div>
 | 
				
			||||||
 | 
				
			|||||||
@ -915,8 +915,8 @@ class Event {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
        // MouseEvent
 | 
					        // MouseEvent
 | 
				
			||||||
        const mouseEventOpts = {
 | 
					        const mouseEventOpts = {
 | 
				
			||||||
            screenX: window.screenX + target.offsetLeft + position.x,
 | 
					            screenX: window.screenX + (target.offsetLeft || 0) + position.x,
 | 
				
			||||||
            screenY: window.screenY + target.offsetTop + position.y,
 | 
					            screenY: window.screenY + (target.offsetTop || 0) + position.y,
 | 
				
			||||||
            clientX: rect.x + position.x,
 | 
					            clientX: rect.x + position.x,
 | 
				
			||||||
            clientY: rect.y + position.y,
 | 
					            clientY: rect.y + position.y,
 | 
				
			||||||
            ctrlKey: false,
 | 
					            ctrlKey: false,
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										55
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										55
									
								
								package-lock.json
									
									
									
										generated
									
									
									
								
							@ -1481,7 +1481,8 @@
 | 
				
			|||||||
                "ansi-regex": {
 | 
					                "ansi-regex": {
 | 
				
			||||||
                    "version": "2.1.1",
 | 
					                    "version": "2.1.1",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true
 | 
				
			||||||
                },
 | 
					                },
 | 
				
			||||||
                "aproba": {
 | 
					                "aproba": {
 | 
				
			||||||
                    "version": "1.2.0",
 | 
					                    "version": "1.2.0",
 | 
				
			||||||
@ -1502,12 +1503,14 @@
 | 
				
			|||||||
                "balanced-match": {
 | 
					                "balanced-match": {
 | 
				
			||||||
                    "version": "1.0.0",
 | 
					                    "version": "1.0.0",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true
 | 
				
			||||||
                },
 | 
					                },
 | 
				
			||||||
                "brace-expansion": {
 | 
					                "brace-expansion": {
 | 
				
			||||||
                    "version": "1.1.11",
 | 
					                    "version": "1.1.11",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true,
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true,
 | 
				
			||||||
                    "requires": {
 | 
					                    "requires": {
 | 
				
			||||||
                        "balanced-match": "^1.0.0",
 | 
					                        "balanced-match": "^1.0.0",
 | 
				
			||||||
                        "concat-map": "0.0.1"
 | 
					                        "concat-map": "0.0.1"
 | 
				
			||||||
@ -1522,17 +1525,20 @@
 | 
				
			|||||||
                "code-point-at": {
 | 
					                "code-point-at": {
 | 
				
			||||||
                    "version": "1.1.0",
 | 
					                    "version": "1.1.0",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true
 | 
				
			||||||
                },
 | 
					                },
 | 
				
			||||||
                "concat-map": {
 | 
					                "concat-map": {
 | 
				
			||||||
                    "version": "0.0.1",
 | 
					                    "version": "0.0.1",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true
 | 
				
			||||||
                },
 | 
					                },
 | 
				
			||||||
                "console-control-strings": {
 | 
					                "console-control-strings": {
 | 
				
			||||||
                    "version": "1.1.0",
 | 
					                    "version": "1.1.0",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true
 | 
				
			||||||
                },
 | 
					                },
 | 
				
			||||||
                "core-util-is": {
 | 
					                "core-util-is": {
 | 
				
			||||||
                    "version": "1.0.2",
 | 
					                    "version": "1.0.2",
 | 
				
			||||||
@ -1649,7 +1655,8 @@
 | 
				
			|||||||
                "inherits": {
 | 
					                "inherits": {
 | 
				
			||||||
                    "version": "2.0.3",
 | 
					                    "version": "2.0.3",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true
 | 
				
			||||||
                },
 | 
					                },
 | 
				
			||||||
                "ini": {
 | 
					                "ini": {
 | 
				
			||||||
                    "version": "1.3.5",
 | 
					                    "version": "1.3.5",
 | 
				
			||||||
@ -1661,6 +1668,7 @@
 | 
				
			|||||||
                    "version": "1.0.0",
 | 
					                    "version": "1.0.0",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true,
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true,
 | 
				
			||||||
                    "requires": {
 | 
					                    "requires": {
 | 
				
			||||||
                        "number-is-nan": "^1.0.0"
 | 
					                        "number-is-nan": "^1.0.0"
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
@ -1675,6 +1683,7 @@
 | 
				
			|||||||
                    "version": "3.0.4",
 | 
					                    "version": "3.0.4",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true,
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true,
 | 
				
			||||||
                    "requires": {
 | 
					                    "requires": {
 | 
				
			||||||
                        "brace-expansion": "^1.1.7"
 | 
					                        "brace-expansion": "^1.1.7"
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
@ -1682,12 +1691,14 @@
 | 
				
			|||||||
                "minimist": {
 | 
					                "minimist": {
 | 
				
			||||||
                    "version": "0.0.8",
 | 
					                    "version": "0.0.8",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true
 | 
				
			||||||
                },
 | 
					                },
 | 
				
			||||||
                "minipass": {
 | 
					                "minipass": {
 | 
				
			||||||
                    "version": "2.3.5",
 | 
					                    "version": "2.3.5",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true,
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true,
 | 
				
			||||||
                    "requires": {
 | 
					                    "requires": {
 | 
				
			||||||
                        "safe-buffer": "^5.1.2",
 | 
					                        "safe-buffer": "^5.1.2",
 | 
				
			||||||
                        "yallist": "^3.0.0"
 | 
					                        "yallist": "^3.0.0"
 | 
				
			||||||
@ -1706,6 +1717,7 @@
 | 
				
			|||||||
                    "version": "0.5.1",
 | 
					                    "version": "0.5.1",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true,
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true,
 | 
				
			||||||
                    "requires": {
 | 
					                    "requires": {
 | 
				
			||||||
                        "minimist": "0.0.8"
 | 
					                        "minimist": "0.0.8"
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
@ -1786,7 +1798,8 @@
 | 
				
			|||||||
                "number-is-nan": {
 | 
					                "number-is-nan": {
 | 
				
			||||||
                    "version": "1.0.1",
 | 
					                    "version": "1.0.1",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true
 | 
				
			||||||
                },
 | 
					                },
 | 
				
			||||||
                "object-assign": {
 | 
					                "object-assign": {
 | 
				
			||||||
                    "version": "4.1.1",
 | 
					                    "version": "4.1.1",
 | 
				
			||||||
@ -1798,6 +1811,7 @@
 | 
				
			|||||||
                    "version": "1.4.0",
 | 
					                    "version": "1.4.0",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true,
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true,
 | 
				
			||||||
                    "requires": {
 | 
					                    "requires": {
 | 
				
			||||||
                        "wrappy": "1"
 | 
					                        "wrappy": "1"
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
@ -1883,7 +1897,8 @@
 | 
				
			|||||||
                "safe-buffer": {
 | 
					                "safe-buffer": {
 | 
				
			||||||
                    "version": "5.1.2",
 | 
					                    "version": "5.1.2",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true
 | 
				
			||||||
                },
 | 
					                },
 | 
				
			||||||
                "safer-buffer": {
 | 
					                "safer-buffer": {
 | 
				
			||||||
                    "version": "2.1.2",
 | 
					                    "version": "2.1.2",
 | 
				
			||||||
@ -1919,6 +1934,7 @@
 | 
				
			|||||||
                    "version": "1.0.2",
 | 
					                    "version": "1.0.2",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true,
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true,
 | 
				
			||||||
                    "requires": {
 | 
					                    "requires": {
 | 
				
			||||||
                        "code-point-at": "^1.0.0",
 | 
					                        "code-point-at": "^1.0.0",
 | 
				
			||||||
                        "is-fullwidth-code-point": "^1.0.0",
 | 
					                        "is-fullwidth-code-point": "^1.0.0",
 | 
				
			||||||
@ -1938,6 +1954,7 @@
 | 
				
			|||||||
                    "version": "3.0.1",
 | 
					                    "version": "3.0.1",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true,
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true,
 | 
				
			||||||
                    "requires": {
 | 
					                    "requires": {
 | 
				
			||||||
                        "ansi-regex": "^2.0.0"
 | 
					                        "ansi-regex": "^2.0.0"
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
@ -1981,12 +1998,14 @@
 | 
				
			|||||||
                "wrappy": {
 | 
					                "wrappy": {
 | 
				
			||||||
                    "version": "1.0.2",
 | 
					                    "version": "1.0.2",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true
 | 
				
			||||||
                },
 | 
					                },
 | 
				
			||||||
                "yallist": {
 | 
					                "yallist": {
 | 
				
			||||||
                    "version": "3.0.3",
 | 
					                    "version": "3.0.3",
 | 
				
			||||||
                    "bundled": true,
 | 
					                    "bundled": true,
 | 
				
			||||||
                    "dev": true
 | 
					                    "dev": true,
 | 
				
			||||||
 | 
					                    "optional": true
 | 
				
			||||||
                }
 | 
					                }
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
@ -2492,11 +2511,11 @@
 | 
				
			|||||||
            "dev": true
 | 
					            "dev": true
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
        "https-proxy-agent": {
 | 
					        "https-proxy-agent": {
 | 
				
			||||||
            "version": "2.2.1",
 | 
					            "version": "2.2.2",
 | 
				
			||||||
            "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz",
 | 
					            "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.2.tgz",
 | 
				
			||||||
            "integrity": "sha512-HPCTS1LW51bcyMYbxUIOO4HEOlQ1/1qRaFWcyxvwaqUS9TY88aoEuHUY33kuAh1YhVVaDQhLZsnPd+XNARWZlQ==",
 | 
					            "integrity": "sha512-c8Ndjc9Bkpfx/vCJueCPy0jlP4ccCCSNDp8xwCZzPjKJUm+B+u9WX2x98Qx4n1PiMNTWo3D7KK5ifNV/yJyRzg==",
 | 
				
			||||||
            "requires": {
 | 
					            "requires": {
 | 
				
			||||||
                "agent-base": "^4.1.0",
 | 
					                "agent-base": "^4.3.0",
 | 
				
			||||||
                "debug": "^3.1.0"
 | 
					                "debug": "^3.1.0"
 | 
				
			||||||
            },
 | 
					            },
 | 
				
			||||||
            "dependencies": {
 | 
					            "dependencies": {
 | 
				
			||||||
@ -3431,9 +3450,9 @@
 | 
				
			|||||||
            "integrity": "sha1-i0tcQzsx5Bm8N53FZc4bg1qRs3I="
 | 
					            "integrity": "sha1-i0tcQzsx5Bm8N53FZc4bg1qRs3I="
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
        "pixi-particles": {
 | 
					        "pixi-particles": {
 | 
				
			||||||
            "version": "4.1.1",
 | 
					            "version": "4.1.2",
 | 
				
			||||||
            "resolved": "https://registry.npmjs.org/pixi-particles/-/pixi-particles-4.1.1.tgz",
 | 
					            "resolved": "https://registry.npmjs.org/pixi-particles/-/pixi-particles-4.1.2.tgz",
 | 
				
			||||||
            "integrity": "sha512-R/vnqXzD2X4v4mSi3zJE81i1vGWaaZSDI/ImaZr8G4E0qBq2+OxB97Kb9WVWd7BlLFj4wR09VGKm7e5sQGQy4Q=="
 | 
					            "integrity": "sha512-+b8p39fMPE3dtjCSJxxlZTzvJZfEgkPa8HupBMAOV2SrwYsgEK6DnThOVIzya75Iii/02jRUDhJ1zBg0j+qQZA=="
 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
        "pixi-projection": {
 | 
					        "pixi-projection": {
 | 
				
			||||||
            "version": "0.2.8",
 | 
					            "version": "0.2.8",
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user