K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / var / www / html / ulungkusma_web_id / tiny_mce / themes / advanced / js /
server ip : 172.67.156.115

your ip : 172.70.127.127

H O M E


Filename/var/www/html/ulungkusma_web_id/tiny_mce/themes/advanced/js/anchor.js
Size981
Permissionrw-rw-r--
Ownerulung : ulung
Create time27-Apr-2025 11:16
Last modified05-Feb-2025 12:52
Last accessed16-Jun-2025 11:12
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
tinyMCEPopup.requireLangPack();

var AnchorDialog = {
init : function(ed) {
var action, elm, f = document.forms[0];

this.editor = ed;
elm = ed.dom.getParent(ed.selection.getNode(), 'A');
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() {
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;
}

tinyMCEPopup.restoreSelection();

if (this.action != 'update')
ed.selection.collapse(1);

elm = ed.dom.getParent(ed.selection.getNode(), 'A');
if (elm)
elm.name = name;
else
ed.execCommand('mceInsertContent', 0, ed.dom.createHTML('a', {name : name, 'class' : 'mceItemAnchor'}, ''));

tinyMCEPopup.close();
}
};

tinyMCEPopup.onInit.add(AnchorDialog.init, AnchorDialog);