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