We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
var visualObj = ABCJS.renderAbc("playback-paper", theABC, { add_classes: true, clickListener: NoteClickListener, selectTypes: ["note"], })[0];
I don't want highlight the blue border like that when I click to note, anyone can help me?
The text was updated successfully, but these errors were encountered:
If you have CSS styles on the page, you could try adding this:
g { stroke: none; }
That will prevent a stroke/border from showing for all SVG groups (including notes). If you want to only hide the stroke on notes, you can do this:
g[data-name="note"] { stroke: none; }
Or maybe more specifically, on highlighted notes:
g[data-name="note"].abcjs-highlight { stroke: none; }
Sorry, something went wrong.
@samuelbradshaw thank for your support, i've already try 3 way u suggest, but it's not work at all
No branches or pull requests
I don't want highlight the blue border like that when I click to note, anyone can help me?
The text was updated successfully, but these errors were encountered: