LinkSubmit broken in IE 7 mode
------------------------------

                 Key: TAP5-1211
                 URL: https://issues.apache.org/jira/browse/TAP5-1211
             Project: Tapestry 5
          Issue Type: Bug
          Components: tapestry-core
    Affects Versions: 5.2.0
            Reporter: Howard M. Lewis Ship


LinkSubmit makes use of Tapestry.remove(), whose implementation is broken in IE 
7.

Once Tapestry.purge() operates on an element, it can't be deleted via 
$(element).remove()  because the remove function property will have been 
purged, thus:

  element.remove();

needs to be

  Element.remove(element);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to