-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
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
Repair Editing a comment containing both RTL and LTR characters breaks the (edited) text #9834
Changes from 12 commits
3bf8321
c30e992
556506d
1e9514e
c794059
71bb61a
84b3394
e7af093
5dfd58c
d1fda9f
80ef0c2
3a3a820
7800d79
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,14 @@ | ||||||
/** | ||||||
* Writing direction utility styles. | ||||||
* note: writingDirection not available for Android, for Android you can use the Unicode. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||||||
* | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. remove extra line
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||||||
* https://www.w3.org/International/questions/qa-bidi-unicode-controls | ||||||
*/ | ||||||
export default { | ||||||
rtl: { | ||||||
writingDirection: 'rtl', | ||||||
}, | ||||||
ltr: { | ||||||
writingDirection: 'ltr', | ||||||
}, | ||||||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.