Sha256: a93d2f79c58b7c0fedffd9412a831d61802e5ff7578a30031c29f69b3d3bd4e3

Contents?: true

Size: 1.18 KB

Versions: 42

Compression:

Stored size: 1.18 KB

Contents

<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>CodeMirror: TypeScript mode</title>
    <link rel="stylesheet" href="../../lib/codemirror.css">
    <script src="../../lib/codemirror.js"></script>
    <script src="javascript.js"></script>
    <link rel="stylesheet" href="../../doc/docs.css">
    <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  </head>
  <body>
    <h1>CodeMirror: TypeScript mode</h1>

<div><textarea id="code" name="code">
class Greeter {
	greeting: string;
	constructor (message: string) {
		this.greeting = message;
	}
	greet() {
		return "Hello, " + this.greeting;
	}
}   

var greeter = new Greeter("world");

var button = document.createElement('button')
button.innerText = "Say Hello"
button.onclick = function() {
	alert(greeter.greet())
}

document.body.appendChild(button)

</textarea></div>

    <script>
      var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
        lineNumbers: true,
        matchBrackets: true,
        mode: "text/typescript"
      });
    </script>

    <p>This is a specialization of the <a href="index.html">JavaScript mode</a>.</p>
  </body>
</html>

Version data entries

42 entries across 40 versions & 5 rubygems

Version Path
mdbe-0.1.0 public/libs/codemirror/mode/javascript/typescript.html
erp_app-3.1.16 public/javascripts/erp_app/codemirror/mode/javascript/typescript.html
bonethug-0.0.17 skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/typescript.html
bonethug-0.0.16 skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/typescript.html
erp_app-3.1.15 public/javascripts/erp_app/codemirror/mode/javascript/typescript.html
bonethug-0.0.15 skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/typescript.html
bonethug-0.0.14 skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/typescript.html
bonethug-0.0.13 skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/typescript.html
bonethug-0.0.12 skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/typescript.html
bonethug-0.0.11 skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/typescript.html
bonethug-0.0.10 skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/typescript.html
bonethug-0.0.7 skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/typescript.html
bonethug-0.0.6 skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/typescript.html
bonethug-0.0.5 skel/project_types/silverstripe3/public/abc/lib/codemirror/mode/javascript/typescript.html
erp_app-3.1.14 public/javascripts/erp_app/codemirror/mode/javascript/typescript.html
erp_app-3.1.13 public/javascripts/erp_app/codemirror/mode/javascript/typescript.html
erp_app-3.1.12 public/javascripts/erp_app/codemirror/mode/javascript/typescript.html
erp_app-3.1.11 public/javascripts/erp_app/codemirror/mode/javascript/typescript.html
erp_app-3.1.10 public/javascripts/erp_app/codemirror/mode/javascript/typescript.html
maglev-database-explorer-0.0.5 public/libs/codemirror/mode/javascript/typescript.html