* Triggered when view has been created. * @protected * @param {View} view
(view)
| 126 | * @param {View} view |
| 127 | */ |
| 128 | didCreateView (view) { |
| 129 | super.didCreateView(view) |
| 130 | if (this._queuedContent !== null) { |
| 131 | // perform queued view |
| 132 | this.view(this._queuedContent) |
| 133 | // clear queued view |
| 134 | this._queuedContent = null |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Triggered when the content has been changed inside this Viewer. |