Sha256: 9d4eda25222dccdd18d979ff81750c20563646c29940b134d2d8acfda20a300f

Contents?: true

Size: 1.35 KB

Versions: 46

Compression:

Stored size: 1.35 KB

Contents

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CodeMirror: Breakpoint Demo</title>
    <link rel="stylesheet" href="../lib/codemirror.css">
    <script src="../lib/codemirror.js"></script>
    <script src="../mode/javascript/javascript.js"></script>
    <link rel="stylesheet" href="../doc/docs.css">

    <style type="text/css">
      .CodeMirror-gutter {
        width: 3em;
        background: white;
      }
      .CodeMirror {
        border: 1px solid #aaa;
      }
    </style>
  </head>
  <body>
    <h1>CodeMirror: Breakpoint demo</h1>

    <form><textarea id="code" name="code">
CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  onGutterClick: function(cm, n) {
    var info = cm.lineInfo(n);
    if (info.markerText)
      cm.clearMarker(n);
    else
      cm.setMarker(n, "<span style=\"color: #900\">●</span> %N%");
  }
});
</textarea></form>

<p>Click the line-number gutter to add or remove 'breakpoints'.</p>

    <script>
      var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
        lineNumbers: true,
        onGutterClick: function(cm, n) {
          var info = cm.lineInfo(n);
          if (info.markerText)
            cm.clearMarker(n);
          else
            cm.setMarker(n, "<span style=\"color: #900\">●</span> %N%");
        }
      });
    </script>

  </body>
</html>

Version data entries

46 entries across 23 versions & 1 rubygems

Version Path
rearview-1.2.3-jruby public/rearview/vendor/codemirror/demo/marker.html
rearview-1.2.3-jruby public/rearview-src/vendor/codemirror/demo/marker.html
rearview-1.2.2.rc.2-jruby public/rearview/vendor/codemirror/demo/marker.html
rearview-1.2.2.rc.2-jruby public/rearview-src/vendor/codemirror/demo/marker.html
rearview-1.2.2.rc.1-jruby public/rearview-src/vendor/codemirror/demo/marker.html
rearview-1.2.2.rc.1-jruby public/rearview/vendor/codemirror/demo/marker.html
rearview-1.2.1-jruby public/rearview-src/vendor/codemirror/demo/marker.html
rearview-1.2.1-jruby public/rearview/vendor/codemirror/demo/marker.html
rearview-1.2.0-jruby public/rearview-src/vendor/codemirror/demo/marker.html
rearview-1.2.0-jruby public/rearview/vendor/codemirror/demo/marker.html
rearview-1.1.2-jruby public/rearview-src/vendor/codemirror/demo/marker.html
rearview-1.1.2-jruby public/rearview/vendor/codemirror/demo/marker.html
rearview-1.1.1-jruby public/rearview/vendor/codemirror/demo/marker.html
rearview-1.1.1-jruby public/rearview-src/vendor/codemirror/demo/marker.html
rearview-1.1.0-jruby public/rearview/vendor/codemirror/demo/marker.html
rearview-1.1.0-jruby public/rearview-src/vendor/codemirror/demo/marker.html
rearview-1.0.3.rc.4-jruby public/rearview/vendor/codemirror/demo/marker.html
rearview-1.0.3.rc.4-jruby public/rearview-src/vendor/codemirror/demo/marker.html
rearview-1.0.3.rc.3-jruby public/rearview-src/vendor/codemirror/demo/marker.html
rearview-1.0.3.rc.3-jruby public/rearview/vendor/codemirror/demo/marker.html