(key: string = "", progressKey: string = "", progressFactorKey: string = "", bufferProgressKey: string = "data-string-progress-value")
| 53 | public eventManager: EventManager = new EventManager() |
| 54 | |
| 55 | constructor(key: string = "", progressKey: string = "", progressFactorKey: string = "", bufferProgressKey: string = "data-string-progress-value"){ |
| 56 | this._key = key |
| 57 | this.progressKey = progressKey |
| 58 | this.progressFactorKey = progressFactorKey |
| 59 | this.bufferProgressKey = bufferProgressKey |
| 60 | this.status = true |
| 61 | } |
| 62 | get(id: string): StringScrollObject | undefined{ |
| 63 | // return this.objectsMap.has(id) ? this.objectsMap.get(id) : undefined |
| 64 | return this.allObjects.has(id) ? this.allObjects.get(id) : undefined |
nothing calls this directly
no outgoing calls
no test coverage detected