Skip to content

Commit

Permalink
Fix code style.
Browse files Browse the repository at this point in the history
  • Loading branch information
GhitaB committed Sep 27, 2018
1 parent c6fa8c6 commit 8ad0125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zope/formlib/orderedSelectionList.pt
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function copyDataForSubmit(name)
var newNode = document.createElement("input");
newNode.setAttribute("name", name.replace(/-/g, '.')+':list');
newNode.setAttribute("type", "hidden");
newNode.setAttribute("value",toSel.options[i].value );
newNode.setAttribute("value", toSel.options[i].value);

// actually append virtual node to DOM tree
toDataContainer.appendChild(newNode);
Expand Down

0 comments on commit 8ad0125

Please sign in to comment.