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');
|
2012-05-28 11:42:15 +02:00
|
|
|
v = ed.dom.getAttrib(elm, 'name') || ed.dom.getAttrib(elm, 'id');
|
2009-11-21 03:26:09 +01:00
|
|
|
|
|
|
|
if (v) {
|
|
|
|
this.action = 'update';
|
|
|
|
f.anchorName.value = v;
|
|
|
|
}
|
|
|
|
|
|
|
|
f.insert.value = ed.getLang(elm ? 'update' : 'insert');
|
|
|
|
},
|
|
|
|
|
|
|
|
update : function() {
|
2012-05-28 11:42:15 +02:00
|
|
|
var ed = this.editor, elm, name = document.forms[0].anchorName.value, attribName;
|
2011-04-05 01:42:57 +02:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2012-05-28 11:42:15 +02:00
|
|
|
var aRule = ed.schema.getElementRule('a');
|
|
|
|
if (!aRule || aRule.attributes.name) {
|
|
|
|
attribName = 'name';
|
|
|
|
} else {
|
|
|
|
attribName = 'id';
|
|
|
|
}
|
|
|
|
|
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) {
|
2012-05-28 11:42:15 +02:00
|
|
|
elm.setAttribute(attribName, name);
|
|
|
|
elm[attribName] = name;
|
2012-09-14 05:26:17 +02:00
|
|
|
ed.undoManager.add();
|
2012-05-28 11:42:15 +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
|
2012-05-28 11:42:15 +02:00
|
|
|
var attrs = {'class' : 'mceItemAnchor'};
|
|
|
|
attrs[attribName] = name;
|
|
|
|
ed.execCommand('mceInsertContent', 0, ed.dom.createHTML('a', attrs, '\uFEFF'));
|
2012-09-14 05:26:17 +02:00
|
|
|
ed.nodeChanged();
|
2012-05-28 11:42:15 +02:00
|
|
|
}
|
2009-11-21 03:26:09 +01:00
|
|
|
|
|
|
|
tinyMCEPopup.close();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
tinyMCEPopup.onInit.add(AnchorDialog.init, AnchorDialog);
|