#3018 closed defect (fixed)
dijit.util.bidi.isLeftToRight() reports false on IE on documents with no explicit dir set
Reported by: | simonjb | Owned by: | Adam Peller |
---|---|---|---|
Priority: | high | Milestone: | 0.9beta |
Component: | Widgets | Version: | 0.9 |
Keywords: | bidi | Cc: | |
Blocked By: | Blocking: |
Description
dijit.util.bidi.isLeftToRight() reports false on IE on documents with no explicit dir set. It should default to true.
Attachments (1)
Change History (5)
Changed 14 years ago by
Attachment: | test_bidi.html added |
---|
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
I think that the last line in isLeftToRight() should be:
return true;
rather than:
return dojo.doc.dir;
comment:3 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:4 Changed 13 years ago by
Keywords: | bidi added |
---|
Note: See
TracTickets for help on using
tickets.
Test case attached.