mirror of
https://github.com/apache/struts.git
synced 2026-08-07 15:46:57 +00:00
Add more consistency to code
Variable was missing declaration and semicolon was missing
This commit is contained in:
committed by
GitHub
parent
7d246c2603
commit
cbfe505dab
@@ -29,8 +29,8 @@
|
||||
result_div.appendChild(document.createElement('br'));
|
||||
|
||||
for (var line_index in result_array) {
|
||||
var result_wrap = document.createElement('pre')
|
||||
line = document.createTextNode(result_array[line_index]);
|
||||
var result_wrap = document.createElement('pre');
|
||||
var line = document.createTextNode(result_array[line_index]);
|
||||
result_wrap.appendChild(line);
|
||||
result_div.appendChild(result_wrap);
|
||||
result_div.appendChild(document.createElement('br'));
|
||||
|
||||
Reference in New Issue
Block a user