From b36d75af46626b47163c1f24d568d0b05f53e855 Mon Sep 17 00:00:00 2001 From: Uwe Oestermeier Date: Mon, 8 Jul 2019 09:05:54 +0200 Subject: [PATCH] Removed setup from constructor to simplify specializations --- dist/iwmlib.pixi.js | 8 -------- lib/pixi/scrollview.js | 8 -------- 2 files changed, 16 deletions(-) diff --git a/dist/iwmlib.pixi.js b/dist/iwmlib.pixi.js index 706334d..d50027d 100644 --- a/dist/iwmlib.pixi.js +++ b/dist/iwmlib.pixi.js @@ -13322,14 +13322,6 @@ super(opts); this.opts = opts; - - // setup - //----------------- - this.setup(); - - // layout - //----------------- - this.layout(); } /** diff --git a/lib/pixi/scrollview.js b/lib/pixi/scrollview.js index 6a3ff71..beaab03 100644 --- a/lib/pixi/scrollview.js +++ b/lib/pixi/scrollview.js @@ -38,14 +38,6 @@ export default class Scrollview extends Scrollbox { super(opts) this.opts = opts - - // setup - //----------------- - this.setup() - - // layout - //----------------- - this.layout() } /**