Changeset 3000:c253e82bd552 for plugins/dcCKEditor/js/popup_link.js
- Timestamp:
- 04/27/15 13:01:58 (10 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/dcCKEditor/js/popup_link.js
r2868 r3000 24 24 link.setAttribute('href', insert_form.elements.href.value); 25 25 if (insert_form.elements.title.value!='') { 26 link.setAttribute('title', insert_form.elements.title.value); 26 link.setAttribute( 27 'title', 28 window.opener.CKEDITOR.tools.htmlEncodeAttr(insert_form.elements.title.value) 29 ); 27 30 } 28 31 if (insert_form.elements.hreflang.value!='') { 29 link.setAttribute('hreflang', insert_form.elements.hreflang.value); 32 link.setAttribute( 33 'hreflang', 34 window.opener.CKEDITOR.tools.htmlEncodeAttr(insert_form.elements.hreflang.value) 35 ); 30 36 } 31 37 if (editor.getSelection().getSelectedElement()!=null) {
Note: See TracChangeset
for help on using the changeset viewer.