Opened 10 years ago
Closed 10 years ago
#11615 closed defect (fixed)
small syntax error on dijit.Editor.js
Reported by: | goriol | Owned by: | bill |
---|---|---|---|
Priority: | high | Milestone: | 1.6 |
Component: | Editor | Version: | 1.5 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Doing some debugging on my JavaScript?, I discovered a small syntax error on dijit.Editor.js.
Line 236 is missing the trailing semicolon:
bodyDir = b.dir?b.dir.toLowerCase():""
It should probably be written:
bodyDir = b.dir?b.dir.toLowerCase():"";
Change History (2)
comment:1 Changed 10 years ago by
Component: | General → Editor |
---|---|
Milestone: | tbd → 1.6 |
Owner: | changed from anonymous to bill |
Status: | new → assigned |
comment:2 Changed 10 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
Thanks, I'll check in the fix.