diff options
author | Richard Worth <rdworth@gmail.com> | 2008-06-05 12:09:18 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-06-05 12:09:18 +0000 |
commit | b0a72dc57517b7b8267378db96a80e697bf1f0e4 (patch) | |
tree | 21b1b824b41f85c119719b20aaa0ea7f3e5537f2 /ui/tests | |
parent | 2dc488c5505928d9ee9c7a41787e41e9e825af14 (diff) | |
download | jquery-ui-b0a72dc57517b7b8267378db96a80e697bf1f0e4.tar.gz jquery-ui-b0a72dc57517b7b8267378db96a80e697bf1f0e4.zip |
reverted [158] - IE's default for relatedTarget is undefined, not document
Diffstat (limited to 'ui/tests')
-rw-r--r-- | ui/tests/jquery.simulate.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ui/tests/jquery.simulate.js b/ui/tests/jquery.simulate.js index 26fd2ae36..b425d4e6a 100644 --- a/ui/tests/jquery.simulate.js +++ b/ui/tests/jquery.simulate.js @@ -65,10 +65,6 @@ $.extend($.simulate.prototype, { } else if (document.createEventObject) {
evt = document.createEventObject();
$.extend(evt, e);
-
- // IE won't allow assignment to toElement or fromElement
- evt.relatedTarget = relatedTarget;
-
evt.button = { 0:1, 1:4, 2:2 }[evt.button] || evt.button;
}
return evt;
|