-
Notifications
You must be signed in to change notification settings - Fork 236
Labels
area-renderingEverything related to the renderingEverything related to the renderingplatform-allAffects all platformsAffects all platformsstate-acceptedThis is a valid topic to work on.This is a valid topic to work on.
Milestone
Description
Is there an existing issue for this?
- I have searched the existing issues
Current Behavior
When putting more than one alphaTab instances on a webpage and using engine = html5, the following error occurs: [AlphaTab][API] An unexpected error occurred[TypeError: Cannot read properties of undefined (reading 'length')]. If I'm using svg, everything works as expected.
Expected Behavior
Both examples should be rendered.
Steps To Reproduce
HTML:
<h3>Score 1</h3>
<div id="at1">
G4 B4 D5 G5
</div>
<h3>Score 2</h3>
<div id="at2">
G4 B4 D5 G5
</div>JS
// here we use JsDelivr as source (notice the .mjs extension which indicates the module variant)
import * as alphaTab from 'https://cdn.jsdelivr.net/npm/@coderline/alphatab@latest/dist/alphaTab.min.mjs'
// initialize alphaTab on the prepared element
new alphaTab.AlphaTabApi(document.getElementById('at1'), {
"tex": true,
"engine": "html5",
});
new alphaTab.AlphaTabApi(document.getElementById('at2'), {
"tex": true,
"engine": "html5",
});Working Example
Here is a link to an example reproducing the issue.
Link to jsFiddle, CodePen, Project
No response
Version and Environment
Platform
Web
Anything else?
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
area-renderingEverything related to the renderingEverything related to the renderingplatform-allAffects all platformsAffects all platformsstate-acceptedThis is a valid topic to work on.This is a valid topic to work on.
Type
Projects
Status
Done