#24999 closed defect (bug) (fixed)
The 'wpeditimage' TinyMCE plugin is broken in trunk/src
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.7 | Priority: | normal |
Severity: | normal | Version: | 3.7 |
Component: | TinyMCE | Keywords: | |
Focuses: | Cc: |
Description
The dialog iframe html is static, and the hard-coded js/editimage.min.js
file doesn't exist in trunk/src/.
Only this custom TinyMCE plugin is affected as it's the only one that includes JS in a static html file. The default TinyMCE plugins don't use minified JS in these cases.
Attachments (1)
Change History (6)
Note: See
TracTickets for help on using
tickets.
There are three options to fix this:
editimage.min.js
and always useeditimage.js
.The first seems the most straightforward. The third has to use document.write as the JS has to load synchronously (the next JS file depends on this one).