diff options
author | Richard D. Worth <rdworth@gmail.com> | 2012-04-27 05:35:43 -0700 |
---|---|---|
committer | Richard D. Worth <rdworth@gmail.com> | 2012-04-27 05:35:43 -0700 |
commit | f032fa6b2fec39a53751caed34e079783064fc44 (patch) | |
tree | 0f955917b27ae68d1a07dbeb2f772d8f5f1b38ce /tests/jquery.simulate.js | |
parent | 7ceb7e974f764c0c732171524cc767838c35bdbb (diff) | |
parent | b16780764c7ffb76688ebb1bd0f372fce2e5d235 (diff) | |
download | jquery-ui-f032fa6b2fec39a53751caed34e079783064fc44.tar.gz jquery-ui-f032fa6b2fec39a53751caed34e079783064fc44.zip |
Merge pull request #641 from lukaszlipinski/master
simulate: Removed duplicated variable declaration
Diffstat (limited to 'tests/jquery.simulate.js')
-rw-r--r-- | tests/jquery.simulate.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/jquery.simulate.js b/tests/jquery.simulate.js index a85ca6ef3..2dae34c28 100644 --- a/tests/jquery.simulate.js +++ b/tests/jquery.simulate.js @@ -243,7 +243,6 @@ $.extend( $.simulate.prototype, { y = Math.floor( center.y ), dx = options.dx || 0, dy = options.dy || 0, - target = this.target, coord = { clientX: x, clientY: y }; this.simulateEvent( target, "mousedown", coord ); coord = { clientX: x + 1, clientY: y + 1 }; |