We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
getByPathは、第2引数のオブジェクトからnamespaceで指定されたパスのものを取得する関数であるが、現在の挙動だとrootObjがwindowまたは指定無しの時にnamespaceが'window'または'window.'で始まっている場合に、'window.window'または'window.window.'以下から探索している。
この場合、IE8-でwindow.window!==windowとなってしまう挙動があるため、h5.u.obj.getByPath('window')がwindow.windowになり、
h5.u.boj.getByPath('window') !== window;
となってしまう。 関連 #339
getByPathは第2引数がwindowまたは指定無しの時に、namespaceが'window'または'window.'始まりの場合は、window.windowを探索するのではなく、windowから探索するように修正する。
The text was updated successfully, but these errors were encountered:
d2467df getByPathを修正しました。
Sorry, something went wrong.
hifive#343 shift()を呼ぶのをやめて、インデックス1からforループを回すようにしました。
aa0dbe7
hifive#343 getByPathのテストを追加しました。
1e74fda
hifive#343 判定式の順序を修正しました。
b647918
fukudayasuo
No branches or pull requests
getByPathは、第2引数のオブジェクトからnamespaceで指定されたパスのものを取得する関数であるが、現在の挙動だとrootObjがwindowまたは指定無しの時にnamespaceが'window'または'window.'で始まっている場合に、'window.window'または'window.window.'以下から探索している。
この場合、IE8-でwindow.window!==windowとなってしまう挙動があるため、h5.u.obj.getByPath('window')がwindow.windowになり、
となってしまう。 関連 #339
getByPathは第2引数がwindowまたは指定無しの時に、namespaceが'window'または'window.'始まりの場合は、window.windowを探索するのではなく、windowから探索するように修正する。
The text was updated successfully, but these errors were encountered: