Skip to content

Commit

Permalink
WW-4473 Adds support for title attribute in SubmitHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszlenart committed Mar 6, 2015
1 parent 66248a8 commit 4ad0232
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ public void generate() throws IOException {
.addIfExists("alt", params.get("label"))
.addIfExists("id", params.get("id"))
.addIfExists("class", params.get("cssClass"))
.addIfExists("style", params.get("cssStyle"));
.addIfExists("style", params.get("cssStyle"))
.addIfExists("title", params.get("title"));

start("input", attrs);
} else {
attrs.addIfExists("name", params.get("name"))
Expand Down

0 comments on commit 4ad0232

Please sign in to comment.