aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorCamil Staps2015-05-08 13:02:09 +0300
committerCamil Staps2015-05-08 13:02:09 +0300
commitf714efc1b0b88ec5041c1acb5405e0dc34553815 (patch)
treebea85a9c544e0ebc064199e83b3a3398d59e624a /index.html
parentThis seems to work (diff)
Bugfix; licensing; copyright & contact details; readme
Diffstat (limited to 'index.html')
-rw-r--r--index.html11
1 files changed, 9 insertions, 2 deletions
diff --git a/index.html b/index.html
index 549b2cb..038f9ee 100644
--- a/index.html
+++ b/index.html
@@ -4,14 +4,21 @@
<title>Coq commands counter</title>
</head>
<body>
- <textarea id="input" cols="60" rows="20"></textarea><br/>
+ <h1>Count commands used in a Coq script</h1>
+ <p>Copyright &copy; 2015 <a href="http://www.camilstaps.nl/">Camil Staps</a> - licensed under <a href="LICENSE">MIT</a>.</p>
+
+ <textarea id="input" cols="60" rows="20">Enter Coq script here</textarea><br/>
<textarea id="output" cols="60" rows="2"></textarea>
<script type="text/javascript" src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="coqCounter.js"></script>
<script type="text/javascript">
$(function(){
- $('#input').coqCounter('#output');
+ $('#input')
+ .coqCounter('#output')
+ .focus(function(){
+ $(this).val('');
+ });
});
</script>
</body>