2018-04-02 08:29:19 +02:00
|
|
|
/**
|
|
|
|
* Initialisation de CodeMirror
|
|
|
|
*/
|
|
|
|
$(function() {
|
2020-05-12 16:28:10 +02:00
|
|
|
$(".editor").each(function() {
|
2018-04-02 08:29:19 +02:00
|
|
|
var _this = this;
|
|
|
|
// Initialisation de CodeMirror
|
|
|
|
var codeMirror = CodeMirror.fromTextArea(_this, {
|
|
|
|
lineNumbers: true,
|
|
|
|
});
|
|
|
|
// Mise à jour de la textarea
|
|
|
|
codeMirror.on("change", function() {
|
|
|
|
$(_this)
|
|
|
|
.val(codeMirror.getValue())
|
|
|
|
.trigger("change");
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|