Opened 10 years ago
Closed 10 years ago
#1472 closed defect (fixed)
Links: target "_top" is not loaded into link dialog
Reported by: | guest | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | 0.97 |
Component: | Dialogs | Version: | trunk |
Severity: | minor | Keywords: | _top link target |
Cc: |
Description
When a link with 'target="_top"' is edited via the link dialog. The target is not set to _top in the dialog.
I found the error on line 30 of the following file (current SVN trunk): modules/CreateLink/pluginMethods.js
if (!/_self|_top_|_blank/.test(a.target))
it should be replaced by:
if (!/_self|_top|_blank/.test(a.target))
Change History (1)
comment:1 Changed 10 years ago by gogo
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.
changeset:1206