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.

18 lines
454B

  1. function Редактор(имяОбласти)
  2. {
  3. this.создать = function()
  4. {
  5. this.установитьAce();
  6. };
  7. this.установитьAce = function()
  8. {
  9. var область = document.getElementById(имяОбласти);
  10. this.ace = window.ace.edit(имяОбласти);
  11. this.ace.session.setMode("ace/mode/javascript");
  12. }
  13. // Конструктор.
  14. this.создать();
  15. }