2009-11-21 03:26:09 +01:00
|
|
|
tinyMCEPopup.requireLangPack();
|
|
|
|
|
|
|
|
var AnchorDialog = {
|
|
|
|
init : function(ed) {
|
|
|
|
var action, elm, f = document.forms[0];
|
|
|
|
|
|
|
|
this.editor = ed;
|
2011-04-05 01:42:57 +02:00
|
|
|
elm = ed.dom.getParent(ed.selection.getNode(), 'A');
|
2009-11-21 03:26:09 +01:00
|
|
|
v = ed.dom.getAttrib(elm, 'name');
|
|
|
|
|
|
|
|
if (v) {
|
|
|
|
this.action = 'update';
|
|
|
|
f.anchorName.value = v;
|
|
|
|
}
|
|
|
|
|
|
|
|
f.insert.value = ed.getLang(elm ? 'update' : 'insert');
|
|
|
|
},
|
|
|
|
|
|
|
|
update : function() {
|
2011-04-05 01:42:57 +02:00
|
|
|
var ed = this.editor, elm, name = document.forms[0].anchorName.value;
|
|
|
|
|
|
|
|
if (!name || !/^[a-z][a-z0-9\-\_:\.]*$/i.test(name)) {
|
|
|
|
tinyMCEPopup.alert('advanced_dlg.anchor_invalid');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-11-21 03:26:09 +01:00
|
|
|
tinyMCEPopup.restoreSelection();
|
|
|
|
|
|
|
|
if (this.action != 'update')
|
|
|
|
ed.selection.collapse(1);
|
|
|
|
|
2011-04-05 01:42:57 +02:00
|
|
|
elm = ed.dom.getParent(ed.selection.getNode(), 'A');
|
2011-10-29 11:43:39 +02:00
|
|
|
if (elm) {
|
|
|
|
elm.setAttribute('name', name);
|
2011-04-05 01:42:57 +02:00
|
|
|
elm.name = name;
|
2011-10-29 11:43:39 +02:00
|
|
|
} else
|
2012-05-08 06:29:43 +02:00
|
|
|
// create with zero-sized nbsp so that in Webkit where anchor is on last line by itself caret cannot be placed after it
|
|
|
|
ed.execCommand('mceInsertContent', 0, ed.dom.createHTML('a', {name : name, 'class' : 'mceItemAnchor'}, '\uFEFF'));
|
2009-11-21 03:26:09 +01:00
|
|
|
|
|
|
|
tinyMCEPopup.close();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
tinyMCEPopup.onInit.add(AnchorDialog.init, AnchorDialog);
|