(id: string)
| 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 |
| 65 | } |
| 66 | init(){ |
| 67 | let progE = document.querySelectorAll(`[${this._key}]:not([data-string-connect]):not([${this._key}-inited])`) |
| 68 | Array.from(progE) |