* Instantiate a new Presenter. * @param el Parent HTMLElement to present within. * @param style Optional PresenterStyle styling options.
(el, style)
| 8064 | * @param el Parent HTMLElement to present within. |
| 8065 | * @param style Optional PresenterStyle styling options. |
| 8066 | */ constructor(el, style){ |
| 8067 | this.el = el; |
| 8068 | this.style = (0, _clone.deepMerge)((0, _defaults.defaultPresenterStyle), style); |
| 8069 | (0, _panel.initializePanel)(this); |
| 8070 | this._last = { |
| 8071 | view: null, |
| 8072 | height: null, |
| 8073 | width: null, |
| 8074 | cubeCount: null, |
| 8075 | stage: null |
| 8076 | }; |
| 8077 | } |
| 8078 | /** |
| 8079 | * Get the previously rendered Stage object. |
| 8080 | */ get stage() { |
nothing calls this directly
no outgoing calls
no test coverage detected