Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed IE issue #417

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Fixed IE issue #417

wants to merge 1 commit into from

Commits on Nov 30, 2016

  1. Fixed IE issue

    Error happens, because (for whatever reason) IE temporarily converts <textarea placeholder="foo"></textarea> to <textarea placeholder="foo">foo</textarea>. This triggers a diff patch on the 'foo' innerHTML as a VTEXT node, but by the time vdom tries to set the VTEXT's value, it has been orphaned by IE.
    
    IE throws an error whenever you try to set the nodeValue of a parentless node which exposes itself as an 'Invalid Argument' exception.
    mikeangstadt authored Nov 30, 2016
    Configuration menu
    Copy the full SHA
    8aadfcb View commit details
    Browse the repository at this point in the history