From: Richard Worth Date: Thu, 5 Jun 2008 12:16:42 +0000 (+0000) Subject: removed x, y as they are not browser event options. Use clientX and clientY X-Git-Tag: 1.5.1~194 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1d7197f719ab7e17bef5737ca0148db7b7cc1ca6;p=jquery-ui.git removed x, y as they are not browser event options. Use clientX and clientY --- diff --git a/ui/tests/jquery.simulate.js b/ui/tests/jquery.simulate.js index 4102d583f..e3803a3cb 100644 --- a/ui/tests/jquery.simulate.js +++ b/ui/tests/jquery.simulate.js @@ -49,7 +49,7 @@ $.extend($.simulate.prototype, { var evt; var e = $.extend({ bubbles: true, cancelable: (type != "mousemove"), view: window, detail: 0, - screenX: 0, screenY: 0, clientX: options.x || 0, clientY: options.y || 0, + screenX: 0, screenY: 0, clientX: 0, clientY: 0, ctrlKey: false, altKey: false, shiftKey: false, metaKey: false, button: 0, relatedTarget: undefined }, options); @@ -118,7 +118,7 @@ $.extend($.simulate.prototype, { options = this.options, x = center.x, y = center.y, dx = options.dx || 0, dy = options.dy || 0, target = this.target; - var coord = { x: x, y: y, complete: null }, evt; + var coord = { clientX: x, clientX: y, complete: null }, evt; this.simulateEvent(target, "mouseover", coord); this.simulateEvent(target, "mousedown", coord);