diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-11-05 18:59:52 +0100 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2012-11-05 18:59:52 +0100 |
commit | 98173a3d0ea8e2e6aeb19dda9b232cb65a0684e4 (patch) | |
tree | 8f9eccb45f512a1e68ccdd1a159223c8eb5790ba /ui | |
parent | 8b3e57024138f1a40be762fd5d29cc390129a8ad (diff) | |
download | jquery-ui-98173a3d0ea8e2e6aeb19dda9b232cb65a0684e4.tar.gz jquery-ui-98173a3d0ea8e2e6aeb19dda9b232cb65a0684e4.zip |
Tooltip: Check type on event directly, preventing TypeError when programmatically moving focus to track-toolipped-input. Fixes #8747 - Tooltip: Using the track option within dialogs creates JS errors
Diffstat (limited to 'ui')
-rw-r--r-- | ui/jquery.ui.tooltip.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.tooltip.js b/ui/jquery.ui.tooltip.js index c05be1d45..325e20efb 100644 --- a/ui/jquery.ui.tooltip.js +++ b/ui/jquery.ui.tooltip.js @@ -252,7 +252,7 @@ $.widget( "ui.tooltip", { } tooltip.position( positionOption ); } - if ( this.options.track && event && /^mouse/.test( event.originalEvent.type ) ) { + if ( this.options.track && event && /^mouse/.test( event.type ) ) { this._on( this.document, { mousemove: position }); |