mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-05 20:48:41 +00:00
96d4a3ecf7
Due to historical reasons, the code is in subfolder "1". With SVN removal, we place the code back and remove the annoying "1" folder.
53 lines
1.6 KiB
HTML
53 lines
1.6 KiB
HTML
<!doctype html>
|
|
|
|
<title>CodeMirror: Closebrackets Demo</title>
|
|
<meta charset="utf-8"/>
|
|
<link rel=stylesheet href="../doc/docs.css">
|
|
|
|
<link rel="stylesheet" href="../lib/codemirror.css">
|
|
<script src="../lib/codemirror.js"></script>
|
|
<script src="../addon/edit/closebrackets.js"></script>
|
|
<script src="../mode/javascript/javascript.js"></script>
|
|
<style type="text/css">
|
|
.CodeMirror {border-top: 1px solid #888; border-bottom: 1px solid #888;}
|
|
</style>
|
|
<div id=nav>
|
|
<a href="http://codemirror.net"><img id=logo src="../doc/logo.png"></a>
|
|
|
|
<ul>
|
|
<li><a href="../index.html">Home</a>
|
|
<li><a href="../doc/manual.html">Manual</a>
|
|
<li><a href="https://github.com/marijnh/codemirror">Code</a>
|
|
</ul>
|
|
<ul>
|
|
<li><a class=active href="#">Closebrackets</a>
|
|
</ul>
|
|
</div>
|
|
|
|
<article>
|
|
<h2>Closebrackets Demo</h2>
|
|
<form><textarea id="code" name="code">function Grid(width, height) {
|
|
this.width = width;
|
|
this.height = height;
|
|
this.cells = new Array(width * height);
|
|
}
|
|
Grid.prototype.valueAt = function(point) {
|
|
return this.cells[point.y * this.width + point.x];
|
|
};
|
|
Grid.prototype.setValueAt = function(point, value) {
|
|
this.cells[point.y * this.width + point.x] = value;
|
|
};
|
|
Grid.prototype.isInside = function(point) {
|
|
return point.x >= 0 && point.y >= 0 &&
|
|
point.x < this.width && point.y < this.height;
|
|
};
|
|
Grid.prototype.moveValue = function(from, to) {
|
|
this.setValueAt(to, this.valueAt(from));
|
|
this.setValueAt(from, undefined);
|
|
};</textarea></form>
|
|
|
|
<script type="text/javascript">
|
|
var editor = CodeMirror.fromTextArea(document.getElementById("code"), {autoCloseBrackets: true});
|
|
</script>
|
|
</article>
|