1
0
mirror of https://github.com/golang/go synced 2024-11-21 15:54:43 -07:00

misc/goplay: fix Tab and Shift+Enter in Firefox.

Fixes #1633.

R=adg, dsymonds
CC=golang-dev
https://golang.org/cl/4439042
This commit is contained in:
Dmitry Chestnykh 2011-04-16 18:44:51 +10:00 committed by Andrew Gerrand
parent 90e4ece365
commit 99b0eefd40

View File

@ -235,8 +235,8 @@ function autoindent(el) {
}, 1);
}
function keyHandler() {
var e = window.event;
function keyHandler(event) {
var e = window.event || event;
if (e.keyCode == 9) { // tab
insertTabs(1);
e.preventDefault();
@ -290,7 +290,7 @@ function compileUpdate() {
</head>
<body>
<table width="100%"><tr><td width="60%" valign="top">
<textarea autofocus="true" id="edit" spellcheck="false" onkeydown="keyHandler();" onkeyup="autocompile();">«@|html»</textarea>
<textarea autofocus="true" id="edit" spellcheck="false" onkeydown="keyHandler(event);" onkeyup="autocompile();">«@|html»</textarea>
<div class="hints">
(Shift-Enter to compile and run.)&nbsp;&nbsp;&nbsp;&nbsp;
<input type="checkbox" id="autocompile" value="checked" /> Compile and run after each keystroke