IT-KIMI_SHI\SINOIT.KIMI
2018-12-07 50eb1d766c470dc6ff927199eaee934f972a8b70
1
2
3
4
5
6
7
8
9
10
11
12
13
$(function() {
  var HtmlMode, editor;
  HtmlMode = ace.require("ace/mode/html").Mode;
  editor = ace.edit("code-preview-button");
  editor.getSession().setMode(new HtmlMode());
  editor.setTheme("ace/theme/github");
  editor = ace.edit("code-preview-button-group");
  editor.getSession().setMode(new HtmlMode());
  editor.setTheme("ace/theme/github");
  editor = ace.edit("code-preview-button-dropdown");
  editor.getSession().setMode(new HtmlMode());
  return editor.setTheme("ace/theme/github");
});