Submit
Path:
~
/
/
opt
/
psa
/
phpMyAdmin
/
js
/
src
/
transformations
/
File Content:
xml.js
/** * XML syntax highlighting transformation plugin */ AJAX.registerOnload('transformations/xml.js', function () { var $elm = $('#page_content').find('code.xml'); $elm.each(function () { var $json = $(this); var $pre = $json.find('pre'); /* We only care about visible elements to avoid double processing */ if ($pre.is(':visible')) { var $highlight = $('<div class="xml-highlight cm-s-default"></div>'); $json.append($highlight); CodeMirror.runMode($json.text(), 'application/xml', $highlight[0]); $pre.hide(); } }); });
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
image_upload.js
787 bytes
0644
json.js
628 bytes
0644
json_editor.js
435 bytes
0644
sql_editor.js
276 bytes
0644
xml.js
623 bytes
0644
xml_editor.js
370 bytes
0644
N4ST4R_ID | Naxtarrr