Skip to content

Commit

Permalink
Fix broken layouts
Browse files Browse the repository at this point in the history
  • Loading branch information
k-tamura committed May 27, 2017
1 parent d20c881 commit 341494e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ protected void doPost(HttpServletRequest req, HttpServletResponse res) throws Se
bodyHtml.append(MessageUtils.getErrMsg("msg.convert.grayscale.fail", locale));
}
if (isConverted) {
bodyHtml.append("<br><br>");
bodyHtml.append("<img src=\"" + SAVE_DIR + "/" + fileName + "\">");
bodyHtml.append("<br><br>");
}
bodyHtml.append("<INPUT type=\"button\" onClick='history.back();' value=\""
+ MessageUtils.getMsg("label.history.back", locale) + "\">");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ protected void doPost(HttpServletRequest req, HttpServletResponse res) throws Se
bodyHtml.append(MessageUtils.getErrMsg("msg.reverse.color.fail", locale));
}
if (isConverted) {
bodyHtml.append("<br><br>");
bodyHtml.append("<img src=\"" + SAVE_DIR + "/" + fileName + "\">");
bodyHtml.append("<br><br>");
}
bodyHtml.append("<INPUT type=\"button\" onClick='history.back();' value=\""
+ MessageUtils.getMsg("label.history.back", locale) + "\">");
Expand Down

0 comments on commit 341494e

Please sign in to comment.