* Returns a lazily instantiated library modal view instance. * @return {ModalView} Library modal view
()
| 153 | * @return {ModalView} Library modal view |
| 154 | */ |
| 155 | getLibraryModalView () { |
| 156 | if (this._libraryModalView === null) { |
| 157 | const library = this.getBrickFactory().getLibrary() |
| 158 | this._libraryModalView = new LibraryModalView(library) |
| 159 | } |
| 160 | return this._libraryModalView |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * Returns the number of bricks. |
no test coverage detected