mirror of https://github.com/avecms/AVE.cms.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
945 B
31 lines
945 B
$(function () { |
|
|
|
var config = { |
|
height: "400px", |
|
parserfile: ["parsexml.js", "parsecss.js", "tokenizejavascript.js", "parsejavascript.js", |
|
"../contrib/php/js/tokenizephp.js", "../contrib/php/js/parsephp.js", |
|
"../contrib/php/js/parsephphtmlmixed.js"], |
|
stylesheet: ["codemirror/css/xmlcolors.css", "codemirror/css/jscolors.css", "codemirror/css/csscolors.css", "codemirror/contrib/php/css/phpcolors.css"], |
|
path: "codemirror/js/", |
|
lineNumbers: true, |
|
lineWrapping: true, |
|
matchBrackets: true, |
|
onCursorActivity: function() { |
|
editor.setLineClass(hlLine, null); |
|
hlLine = editor.setLineClass(editor.getCursor().line, "activeline"); |
|
} |
|
}; |
|
var arrays = $(".coder_in textarea"); |
|
|
|
$.each(arrays, function() { |
|
editor($(this).attr('id')); |
|
}); |
|
|
|
function editor(id) |
|
{ |
|
CodeMirror.fromTextArea(id, config); |
|
} |
|
|
|
var hlLine = editor.setLineClass(0, "activeline"); |
|
|
|
}); |