Fixed display of results in Firefox 1.0.

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@151022 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Kelvin Tan 2005-01-04 15:37:23 +00:00
parent c5b61e1671
commit c6b19891da
1 changed files with 2 additions and 2 deletions

View File

@ -102,8 +102,8 @@
<tr><td>&nbsp;</tr>
<tr><th><p>Current Query:</th><td><pre id="curQuery"></pre><pre id="curQueryValid"></pre></td><td>
<input type="button" name="Update" value="Update Query" onClick="doSubmitForm(this.form); curQuery.innerText = this.form.query.value" />
<input type="button" name="Validate" value="Validate" onClick="doCheckLuceneQuery(this.form.query); curQueryValid.innerText = 'Query is valid'" />
<input type="button" name="Update" value="Update Query" onClick="doSubmitForm(this.form); document.getElementById('curQuery').innerHTML = this.form.query.value" />
<input type="button" name="Validate" value="Validate" onClick="doCheckLuceneQuery(this.form.query); getElementById('curQueryValid').innerHTML = 'Query is valid'" />
</td>
</table>
</form>