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
The using app should control the font used by the RCL. Thus this should be a property that is provided by the app.
Currently, it is hard-coded. This is the code in Verse.js:
Verse.js
const verseText = verseObjects.map(verseObject => verseObject.text).join(''); const hebrew = isHebrew(verseText); let _dir = direction || 'auto'; if (hebrew) { _dir = 'rtl'; } const style = _dir === 'rtl' ? { fontSize: `1.7em`, fontFamily: `EzraSILSRRegular` } : { fontSize: `1em`, fontFamily: `Noto Sans`} //const style = {}; if (paragraphs) style.display = 'inline';
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The using app should control the font used by the RCL. Thus this should be a property that is provided by the app.
Currently, it is hard-coded. This is the code in
Verse.js
:The text was updated successfully, but these errors were encountered: