| [ Index ] |
PHP Cross Reference of WordPress |
[Summary view] [Print] [Text view]
1 tinyMCEPopup.requireLangPack(); 2 3 var AnchorDialog = { 4 init : function(ed) { 5 var action, elm, f = document.forms[0]; 6 7 this.editor = ed; 8 elm = ed.dom.getParent(ed.selection.getNode(), 'A'); 9 v = ed.dom.getAttrib(elm, 'name'); 10 11 if (v) { 12 this.action = 'update'; 13 f.anchorName.value = v; 14 } 15 16 f.insert.value = ed.getLang(elm ? 'update' : 'insert'); 17 }, 18 19 update : function() { 20 var ed = this.editor, elm, name = document.forms[0].anchorName.value; 21 22 if (!name || !/^[a-z][a-z0-9\-\_:\.]*$/i.test(name)) { 23 tinyMCEPopup.alert('advanced_dlg.anchor_invalid'); 24 return; 25 } 26 27 tinyMCEPopup.restoreSelection(); 28 29 if (this.action != 'update') 30 ed.selection.collapse(1); 31 32 elm = ed.dom.getParent(ed.selection.getNode(), 'A'); 33 if (elm) { 34 elm.setAttribute('name', name); 35 elm.name = name; 36 } else 37 ed.execCommand('mceInsertContent', 0, ed.dom.createHTML('a', {name : name, 'class' : 'mceItemAnchor'}, '')); 38 39 tinyMCEPopup.close(); 40 } 41 }; 42 43 tinyMCEPopup.onInit.add(AnchorDialog.init, AnchorDialog);
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Fri May 25 03:56:23 2012 | Hosted by follow the white rabbit. |