Files
MYPOM/3.0/редактор/100.редактор.js
Михаил Капелько c9b8f758af зачаток
2021-08-30 17:49:55 +03:00

18 lines
454 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

function Редактор(имяОбласти)
{
this.создать = function()
{
this.установитьAce();
};
this.установитьAce = function()
{
var область = document.getElementById(имяОбласти);
this.ace = window.ace.edit(имяОбласти);
this.ace.session.setMode("ace/mode/javascript");
}
// Конструктор.
this.создать();
}