Skip to content

Commit

Permalink
Explicitly hide span in 'orderedselect_input.pt'.
Browse files Browse the repository at this point in the history
This only contains hidden inputs, but Internet Explorer 10 was showing
them anyway.
Fixes issue #19.
  • Loading branch information
mauritsvanrees committed Apr 4, 2014
1 parent 8421831 commit c0cbac6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ CHANGES
3.2.1 (unreleased)
------------------

- Nothing changed yet.
- Explicitly hide span in ``orderedselect_input.pt``. This only
contains hidden inputs, but Internet Explorer 10 was showing them
anyway. Fixes https://github.com/zopefoundation/z3c.form/issues/19


3.2.0 (2014-03-18)
Expand Down
2 changes: 1 addition & 1 deletion src/z3c/form/browser/orderedselect_input.pt
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ function selectionError()
</select>
<input name="foo-empty-marker" type="hidden"
tal:attributes="name string:${view/name}-empty-marker"/>
<span id="toDataContainer"
<span id="toDataContainer" style="display: none"
tal:attributes="id string:${view/id}-toDataContainer">
<script type="text/javascript" tal:content="string:
copyDataForSubmit('${view/id}');">
Expand Down

1 comment on commit c0cbac6

@mauritsvanrees
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tests hopefully fixed in f673fc2.

Please sign in to comment.